import type { FC, ReactElement } from 'react' import type { NavItem } from './NavItem' import { classNames } from '../index' export interface NavItemListProps { className?: string children: ReactElement | Array> hideOnMobile?: boolean } export const NavItemList: FC = ({ children, className, hideOnMobile = true }) => { return
{children}
}