import { Menu, MenuProps } from "@chakra-ui/react"; import type { FunctionComponent } from "react"; export interface NavPopoverProps extends MenuProps {} export const NavPopover: FunctionComponent = ({ children, ...menuProps }) => { return ( {children} ); };