import MenuListLib, { MenuListProps as LibMenuListProps } from "@mui/material/MenuList"; import { FC } from "react"; export type MenuListProps = LibMenuListProps; const MenuList: FC = ({ children, ...props }) => { return {children}; }; export default MenuList;