import { FC } from 'react'; import { Link } from 'react-router-dom'; import { useAuth } from '../../../../app/modules/auth'; import { Languages } from './Languages'; import { toAbsoluteUrl } from '../../../helpers'; const HeaderUserMenu: FC = () => { const { currentUser, logout } = useAuth(); return (
Logo
{currentUser?.first_name} {currentUser?.first_name} {/*Pro*/}
{currentUser?.email}
{/*
*/} {/*
My Profile
*/} {/*
My Projects 3
*/} {/*
My Subscription
Referrals
Billing
Payments
Statements
*/} {/*
My Statements
*/}
{/* */} {/*
Account Settings
*/}
Sign Out
); }; export { HeaderUserMenu };