import React from "react"; import { useThemeHooks } from '@redocly/theme/core/hooks'; import { Link } from "@redocly/theme/components/Link/Link"; interface PageProps { description: string; link: string; } interface NavListProps { pages: PageProps[]; bottomBorder?: boolean; } export const NavList: React.FC = ({ pages, bottomBorder = true, }) => { const { useTranslate } = useThemeHooks(); const { translate } = useTranslate(); return ( ); };