+
Bénévoles en attente d'équipe ({volunteersWithoutTeam.length}) :
+
+ {volunteersWithoutTeam.map(
+ ({ id, lastname, firstname, teamWishes, teamObject }) => (
+ -
+
+ {firstname} {lastname}{" "}
+
+ {teamObject?.name}
+ {teamWishes.join(", ")}
+
+ )
+ )}
+
+
Bénévoles dans une équipe ({volunteersWithTeam.length}) :
+
+ {volunteersWithTeam.map(
+ ({ id, lastname, firstname, teamWishes, teamObject }) => (
+ -
+
+ {firstname} {lastname}{" "}
+
+ {teamObject?.name}
+ {teamWishes.join(", ")}
+
+ )
+ )}
+
+
+ >
)
}
diff --git a/src/components/ui/Page/Page.tsx b/src/components/ui/Page/Page.tsx
index b595180..2a1d97a 100644
--- a/src/components/ui/Page/Page.tsx
+++ b/src/components/ui/Page/Page.tsx
@@ -7,7 +7,9 @@ type Props = {
const Page: FC