add Tracks route to app

ref #23
This commit is contained in:
Philipp Dormann 2021-01-03 13:44:45 +01:00
parent f3f318fd01
commit 728dd40f16

View File

@ -78,6 +78,12 @@ import TracksOverview from "./components/TracksOverview.svelte";
<Route path="/users">
<Users />
</Route>
<Route path="/tracks/*">
<Route path="/">
<TracksOverview />
</Route>
<Route path="/:trackid" let:params />
</Route>
<Route path="/runners">
<Runners />
</Route>