diff --git a/front/views/TeamPanel.tsx b/front/views/TeamPanel.tsx index ae116ce..c7f1a3d 100644 --- a/front/views/TeamPanel.tsx +++ b/front/views/TeamPanel.tsx @@ -22,11 +22,32 @@ interface Member{ } -export default function TeamPanel({isCoach}: {isCoach: boolean}){ - - return

prout ({isCoach ? "vrai" : "faux"})

+export default function TeamPanel({isCoach, team}: {isCoach: boolean, team: Team }){ + return ( +
+ +
+) } +function TeamDisplay({name,picture,mainColor,secondColor}: {name: string,picture : string,mainColor}) { + return ( +
+

{name}

+ +
+
+ +
+ ) +} +function Color({color}: {color : string}){ + return( +

Couleur principale :

+
+
+ ) +} diff --git a/src/App/Controller/TeamController.php b/src/App/Controller/TeamController.php index 46adc07..8e32498 100644 --- a/src/App/Controller/TeamController.php +++ b/src/App/Controller/TeamController.php @@ -139,7 +139,12 @@ class TeamController { } else{ $role = $this->model->isCoach($id,$session->getAccount()->getEmail()); - return ViewHttpResponse::react('views/TeamPanel.tsx', ['team' => ["a" => "b"], 'isCoach' => $role]); + return ViewHttpResponse::react('views/TeamPanel.tsx', [ + 'team' => [ + "info" => [ + "id" => 1 + ] + ], 'isCoach' => $role]); } }