diff --git a/src/screens/UserProfileScreen.tsx b/src/screens/UserProfileScreen.tsx new file mode 100644 index 0000000..d894f95 --- /dev/null +++ b/src/screens/UserProfileScreen.tsx @@ -0,0 +1,31 @@ +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;