2024-01-15 19:02:47 +01:00

13 lines
493 B
Plaintext

<Router AppAssembly="@typeof(App).Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
</Found>
<NotFound>
<PageTitle>Seite nicht gefunden</PageTitle>
<LayoutView Layout="@typeof(MainLayout)">
<p role="alert">Tut mir leid, unter dieser Adresse ist nichts zu finden.</p>
</LayoutView>
</NotFound>
</Router>