diff --git a/src/App.js b/src/App.js index 5538124..b6886af 100644 --- a/src/App.js +++ b/src/App.js @@ -140,16 +140,27 @@ function RoomInformation({ roomId, setIsEditDialogOpen }) { Salle sélectionnée - + + Noms + { + names.length === 0 + ? Aucun nom défini + : names.map(name => { + return <>
+ }) + } + + Utilisateurs +
+ { + users.length === 0 + ? Aucun utilisateur défini + : users.map(name => { + return <>
+ }) + } +
+