13 lines
464 B
Text
13 lines
464 B
Text
|
<Router AppAssembly="@typeof(App).Assembly">
|
||
|
<Found Context="routeData">
|
||
|
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
|
||
|
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
|
||
|
</Found>
|
||
|
<NotFound>
|
||
|
<PageTitle>Unfounders</PageTitle>
|
||
|
<LayoutView Layout="@typeof(MainLayout)">
|
||
|
<p role="alert">Oh nyao~ nothing here uwu</p>
|
||
|
</LayoutView>
|
||
|
</NotFound>
|
||
|
</Router>
|