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 ( <> Email :: {userInformations?.email} Firstname :: {userInformations?.firstName} LastNAme :: {userInformations?.lastName} Username :: {userInformations?.username} MarchandId :: {userInformations?.marchand.marchand_id} ); }; export default UserProfileScreen;