"use client"; import React from "react"; import { useAuth, withAuth } from "../hooks/useAuth"; function ProfilePage() { const { user, logout } = useAuth(); const handleLogout = () => { logout(); }; return (
{user?.id}
{user.email}
{JSON.stringify(user.user_metadata, null, 2)}