-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.razor
26 lines (26 loc) · 1012 Bytes
/
App.razor
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<CascadingAuthenticationState>
<Router AppAssembly="@typeof(App).Assembly">
<Found Context="routeData">
<AuthorizeRouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
</Found>
<NotFound>
<PageTitle>Not found</PageTitle>
<LayoutView Layout="@typeof(MainLayout)">
<!--container-->
<div class="container-fluid pe-0">
<!--row-->
<div class="row">
<!--col-->
<div class="col-12">
<p role="alert">Sorry, there's nothing at this address.</p>
</div>
<!--/col-->
</div>
<!--/row-->
</div>
<!--/container-->
</LayoutView>
</NotFound>
</Router>
</CascadingAuthenticationState>