import { Link } from 'react-router-dom'; import { ActiveAccount } from '@shared/accounts/active'; import { SettingsIcon } from '@shared/icons'; import { Logout } from '@shared/logout'; import { NotificationModal } from '@shared/notification/modal'; import { useAccount } from '@utils/hooks/useAccount'; export function LumeBar() { const { status, account } = useAccount(); return (
{status === 'loading' ? ( <>
) : ( <> )}
); }