Files
midrandbooks/MidrandBookshop/Components/Routes.razor
T
2026-05-23 16:52:27 +02:00

12 lines
420 B
Plaintext

@using MidrandBookshop.Components.Pages
<Router AppAssembly="@typeof(Program).Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
</Found>
<NotFound>
<LayoutView Layout="@typeof(MainLayout)">
<NotFound />
</LayoutView>
</NotFound>
</Router>