import MenuLib, { MenuProps as LibMenuProps } from "@mui/material/Menu"; import { FC } from "react"; export type MenuProps = LibMenuProps; const Menu: FC = ({ children, ...props }) => { return {children}; }; export default Menu;