From 4574994bc89db6296bf1776c20f6e34d7cf55a44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ama=C3=ABl=20Kesteman?= Date: Wed, 7 Jan 2026 12:47:25 +0100 Subject: [PATCH] Feat: remplacement liste groupe par listes classique. --- front_end/src/components/ressourceList.tsx | 25 +++++++++------------- 1 file changed, 10 insertions(+), 15 deletions(-) diff --git a/front_end/src/components/ressourceList.tsx b/front_end/src/components/ressourceList.tsx index b398a54..66e767f 100644 --- a/front_end/src/components/ressourceList.tsx +++ b/front_end/src/components/ressourceList.tsx @@ -1,4 +1,3 @@ -import ListGroup from "react-bootstrap/ListGroup"; import { Athlete, Activite } from "../classes"; type Props = { @@ -9,26 +8,22 @@ type Props = { function AthleteList({ athletes }: Props) { return ( - + ); } function ActiviteList({ activites }: Props) { return ( - +
    {activites.map((activite) => ( - +
  • Nom: {activite.nom}
    @@ -38,9 +33,9 @@ function ActiviteList({ activites }: Props) {
    Durée: {activite.duree} minutes
    - +
  • ))} - +
); }