diff --git a/src/screens/UserProfileScreen.tsx b/src/screens/UserProfileScreen.tsx index d894f95..f462732 100644 --- a/src/screens/UserProfileScreen.tsx +++ b/src/screens/UserProfileScreen.tsx @@ -16,12 +16,143 @@ const UserProfileScreen = () => { return ( <> - - Email :: {userInformations?.email} - Firstname :: {userInformations?.firstName} - LastNAme :: {userInformations?.lastName} - Username :: {userInformations?.username} - MarchandId :: {userInformations?.marchand.marchand_id} + + {/* User Informations */} + + + + + + + + + {userInformations.firstName} {userInformations.lastName} + + {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.urlSuccess} + + + + Url échec + + {userInformations.marchand.urlEchec} + +