-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.razor
16 lines (16 loc) · 817 Bytes
/
App.razor
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<Router AppAssembly="@typeof(App).Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
</Found>
<NotFound>
<PageTitle>Not found</PageTitle>
<LayoutView Layout="@typeof(MainLayout)">
<RadzenRow>
<RadzenColumn Size="12" style="margin-top: 5rem; margin-bottom: 5rem">
<RadzenText Text="Page not found" TextStyle="TextStyle.DisplayH1" style="margin: 0; margin-bottom: 2rem" TextAlign="TextAlign.Center" />
<RadzenText Text="Sorry, but there's nothing here!" TextStyle="TextStyle.H6" style="margin: 0" TextAlign="TextAlign.Center" TagName="TagName.P" />
</RadzenColumn>
</RadzenRow>
</LayoutView>
</NotFound>
</Router>