import { useUserAuthenticationContext } from "@/contexts/UserAuthenticationContext"; import BarWithBeasyAndNotificationsIcon from "@components/BarWithBeasyAndNotificationsIcon"; import Button from "@components/Button"; import Box from "@components/bases/Box"; import Text from "@components/bases/Text"; import WrapperWithDefaultBeasyBackgroundAndSafeAreaTopLeftRight from "@components/wrappers/WrapperWithDefaultBeasyBackgroundAndSafeAreaTopLeftRight"; import { LOG } from "@logger"; import Card from "@re-card"; const log = LOG.extend("UserProfileScreen"); const UserProfileScreen = () => { log.verbose("UserProfileScreen"); const { logout } = useUserAuthenticationContext(); const { userInformations } = useUserAuthenticationContext(); return ( <> {userInformations.first_name} {userInformations.last_name} {userInformations.email} Utilisateur {userInformations.username}