import Box from "@components/bases/Box"; import {} from "react"; import {} from "react-native"; import { useUserAuthenticationContext } from "@/contexts/UserAuthenticationContext"; 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 { userInformations } = useUserAuthenticationContext(); return ( <> {/* User Informations */} {userInformations.first_name} {userInformations.last_name} {userInformations.email} Utilisateur {userInformations.username} Informations sur le marchand Identifiant {userInformations.marchand.marchand_id} Entreprise {userInformations.marchand.nom} Code {userInformations.marchand.code} Addresse {userInformations.marchand.adresse} Url succès {userInformations.marchand.url_success} Url échec {userInformations.marchand.url_echec} ); }; export default UserProfileScreen;