MeowStash/App.razor
2023-01-03 23:39:51 +01:00

12 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>