import { useAuth } from '../context/AuthContext'
function ProfilePage() {
const { user } = useAuth()
return (
Profil
Persönliche Daten
Name:
{user?.name || '-'}
E-Mail:
{user?.email}
Rolle:
{user?.role || 'user'}
Tier:
{user?.tier || 'free'}
Einstellungen
Bearbeitung folgt in Kürze
)
}
export default ProfilePage