Files
FoodsharingOnboarding/FoodsharingSiegen.Server/App.razor
Andre Beging b8dfeee518 Confirm Dialog
2022-04-04 16:00:17 +02:00

15 lines
518 B
Plaintext

<Router AppAssembly="@typeof(App).Assembly">
<Found Context="routeData">
<AuthorizeRouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)">
</AuthorizeRouteView>
<FocusOnNavigate RouteData="@routeData" Selector="h1"/>
</Found>
<NotFound>
<PageTitle>Not found</PageTitle>
<LayoutView Layout="@typeof(MainLayout)">
<p role="alert">Sorry, there's nothing at this address.</p>
</LayoutView>
</NotFound>
</Router>
<MessageAlert />