import {NavEntry, NavEntryInfo} from './NavEntry'; export type HeadingInfo = { tagName: string; label: string; id: string; }; export type NavBaseProps = { children?: React.ReactNode headings: HeadingInfo[] pathname: string entries: NavEntryInfo[] className?: string } export function NavBase({ children, headings, pathname, entries, className, }: NavBaseProps) { const headingsJSX = ; return ; }