AuthorBuddy/Components/Routes.razor

7 lines
294 B
Text
Raw Normal View History

2026-05-14 12:31:35 +02:00
<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>