feat: competition result

This commit is contained in:
2025-09-03 18:56:58 +02:00
parent 587173c79f
commit d1c7f37a94
14 changed files with 1294 additions and 1 deletions

View File

@@ -14,6 +14,7 @@ import {ClubRoot, getClubChildren} from "./pages/club/ClubRoot.jsx";
import {DemandeAff, DemandeAffOk} from "./pages/DemandeAff.jsx";
import {MePage} from "./pages/MePage.jsx";
import {CompetitionRoot, getCompetitionChildren} from "./pages/competition/CompetitionRoot.jsx";
import {getResultChildren, ResultRoot} from "./pages/result/ResultRoot.jsx";
const router = createBrowserRouter([
{
@@ -53,6 +54,11 @@ const router = createBrowserRouter([
element: <CompetitionRoot/>,
children: getCompetitionChildren()
},
{
path: 'result',
element: <ResultRoot/>,
children: getResultChildren()
},
{
path: 'me',
element: <MePage/>