import { Menu, MenuButton, MenuItem, MenuItems } from '@headlessui/react'; import { UserCircleIcon } from '@heroicons/react/24/outline'; import { t } from 'i18next'; import { Link } from 'react-router-dom'; import useAuth from '../../hooks/useAuth'; export const ProfileDropdown = () => { const { logout } = useAuth(); return (
); };