import { Menu, MenuItem } from "@material-ui/core"; import React, { FC } from "react"; interface ProfileProps { anchorEl: HTMLElement | null; handleClose: () => void; handleLogout: () => void; } export const Profile: FC = ({ anchorEl, handleClose, handleLogout, ...restProps }) => { return ( Profile My account { handleLogout(); }} > Logout ); };