import { useAuth } from '~/.client/hooks/useAuth'; export function UserProfile({ className }: { className?: string }) { const { isAuthenticated, userInfo, isLoading } = useAuth(); if (!isAuthenticated) { return
{userInfo.email}