import { Menu, MenuItem } from '@material-ui/core'; import React from 'react'; export interface Props { readonly id?: string; readonly anchorEl?: null | Element | ((element: Element) => Element); readonly open: boolean; readonly onClose?: any; } const NavBarMenu = ({ id, anchorEl, open, onClose, ...otherProps }: Props) => (
); export default NavBarMenu;