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"; import { Link } from "react-router-dom"; export function LumeBar() { const { status, account } = useAccount(); return (
{status === "loading" ? ( <>
) : ( <> )}
); }