Skip to content
Snippets Groups Projects
Commit 87240b3e authored by Thomas Bouquet's avatar Thomas Bouquet
Browse files

Test routes

parent b7eba486
No related branches found
No related tags found
No related merge requests found
......@@ -64,14 +64,18 @@ function App() {
<Route exact path="/MonHumaviron">
<MonHumaviron />
</Route>
<Route exact path="/admin/scores" component={GestionScore} />
<Route exact path="/admin/scores">
<GestionScore />
</Route>
<Route exact path="/admin/equipes" component={GestionEquipes} />
<Route exact path="/admin/participants" component={GestionParticipants} />
<Route exact path="/admin/objectifs" component={GestionObjectifs} />
<Route exact path="/admin/admins" component={GestionAdministrateurs} />
<Route exact path="/admin/evenements" component={GestionEvenements} />
<Route path="/admin/scores/nouveau" component={AddScoreForm} />
<Route path="/admin/scores/view/:id" component={AfficheScore} />
<Route path="/admin/scores/view/:id">
<AfficheScore id={id} />
</Route>
<Route path="/admin/scores/edit/score/:id" component={UpdateScoreScore} />
<Route path="/admin/scores/edit/equipe/:id" component={UpdateScoreEquipe} />
<Route path="/admin/scores/edit/participant/:id" component={UpdateScoreParticipant} />
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment