Files
timetracker/Components/Routes.razor
T
Wieland, Marc 88ac175190 first commit
2026-05-22 09:18:01 +02:00

9 lines
325 B
Plaintext

@rendermode InteractiveServer
<Router AppAssembly="typeof(Program).Assembly" NotFoundPage="typeof(Pages.NotFound)">
<Found Context="routeData">
<RouteView RouteData="routeData" DefaultLayout="typeof(Layout.MainLayout)" />
<FocusOnNavigate RouteData="routeData" Selector="h1" />
</Found>
</Router>