12 lines
420 B
Plaintext
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> |