import Box from "@components/bases/Box"; import {} from "react"; import {} from "react-native"; import { useUserAuthenticationContext } from "@/contexts/UserAuthenticationContext"; import Button from "@components/Button"; import BackgroundWithBeasyIconAndWhiteContentArea from "@components/backgrounds/BackgroundWithBeasyIconAndWhiteContentArea"; import Text from "@components/bases/Text"; import { LOG } from "@logger"; const log = LOG.extend("UserProfileScreen"); const UserProfileScreen = () => { log.verbose("UserProfileScreen"); const { logout } = useUserAuthenticationContext(); const { userInformations } = useUserAuthenticationContext(); return ( <> {/* User Informations */} {userInformations.first_name} {userInformations.last_name} {userInformations.email} Utilisateur {userInformations.username}