frontend/src/components/TopBar/Profile.tsx

37 lines
645 B
TypeScript
Raw Normal View History

2020-06-10 21:40:33 +02:00
import { Menu, MenuItem } from "@material-ui/core";
import React, { FC } from "react";
interface ProfileProps {
2020-06-17 15:19:51 +02:00
anchorEl: HTMLElement | null;
handleClose: () => void;
2020-06-20 14:10:58 +02:00
handleLogout: () => void;
2020-06-10 21:40:33 +02:00
}
2020-06-17 15:19:51 +02:00
export const Profile: FC<ProfileProps> = ({
anchorEl,
handleClose,
2020-06-20 14:10:58 +02:00
handleLogout,
2020-06-17 15:19:51 +02:00
...restProps
}) => {
2020-06-10 21:40:33 +02:00
return (
<Menu
className="top-bar__menu"
id="simple-menu"
anchorEl={anchorEl}
keepMounted
open={Boolean(anchorEl)}
onClose={handleClose}
>
<MenuItem>Profile</MenuItem>
<MenuItem>My account</MenuItem>
2020-06-20 14:10:58 +02:00
<MenuItem
onClick={() => {
handleLogout();
}}
>
Logout
</MenuItem>
2020-06-10 21:40:33 +02:00
</Menu>
);
};