import React from "react"; import useAuthUser from "../../hooks/AuthUser"; import PageLayout from "../../components/PageLayout"; const Profile = () => { const {authUser, logout} = useAuthUser() return

Profile

Nom: {authUser?.name}
Email: {authUser?.email}
{/*
Update name & email
*/} {/*
Change password
*/} {/*
Delete Account
*/}
} export default Profile