import * as React from "react"; import { IconButton, Typography, Box, Tooltip, Avatar, Menu, MenuItem, Link, ListItemIcon, Divider, } from "@mui/material"; import PersonIcon from "@mui/icons-material/Person"; import Settings from "@mui/icons-material/Settings"; import MailOutlineIcon from "@mui/icons-material/MailOutline"; import ChatBubbleOutlineIcon from "@mui/icons-material/ChatBubbleOutline"; import AttachMoneyIcon from "@mui/icons-material/AttachMoney"; import Logout from "@mui/icons-material/Logout"; import { useUserProfile } from "contexts/userProfileContext"; const Profile = () => { const { state } = useUserProfile(); const userProfile = state.userProfile; const [anchorEl, setAnchorEl] = React.useState(null); const open = Boolean(anchorEl); const handleClick = (event) => { setAnchorEl(event.currentTarget); }; const handleClose = () => { setAnchorEl(null); }; return ( <> Admin Adison Jeck Profile Inbox Chat Settings Pricing Logout ); }; export default Profile;