AuthorBuddy/Components/Routes.razor

11 lines
424 B
Text
Raw Permalink Normal View History

2026-05-14 12:31:35 +02:00
<Router AppAssembly="typeof(Program).Assembly" NotFoundPage="typeof(Pages.NotFound)">
<Found Context="routeData">
2026-05-21 11:04:42 +02:00
<AuthorizeRouteView RouteData="routeData" DefaultLayout="typeof(Layout.MainLayout)">
<NotAuthorized>
<RedirectToLogin />
</NotAuthorized>
</AuthorizeRouteView>
2026-05-14 12:31:35 +02:00
<FocusOnNavigate RouteData="routeData" Selector="h1" />
</Found>
</Router>