14 lines
578 B
Plaintext
14 lines
578 B
Plaintext
<Router AppAssembly="typeof(Program).Assembly" AdditionalAssemblies="new[] { typeof(Client._Imports).Assembly }">
|
|
<Found Context="routeData">
|
|
<RouteView RouteData="routeData" DefaultLayout="typeof(Layout.MainLayout)" />
|
|
<FocusOnNavigate RouteData="routeData" Selector="h1" />
|
|
</Found>
|
|
<NotFound>
|
|
<LayoutView Layout="typeof(Layout.MainLayout)">
|
|
<div class="text-center py-5">
|
|
<h1>404</h1>
|
|
<p>Diese Seite wurde nicht gefunden.</p>
|
|
</div>
|
|
</LayoutView>
|
|
</NotFound>
|
|
</Router> |