0
|
1 <Router AppAssembly="@typeof(Program).Assembly">
|
|
2 <Found Context="routeData">
|
|
3 <RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
|
|
4 </Found>
|
|
5 <NotFound>
|
|
6 <PageTitle>Not found</PageTitle>
|
|
7 <LayoutView Layout="@typeof(MainLayout)">
|
|
8 <RadzenRow>
|
|
9 <RadzenColumn Size="12" style="margin-top: 5rem; margin-bottom: 5rem">
|
|
10 <RadzenText Text="Page not found" TextStyle="TextStyle.DisplayH1" style="margin: 0; margin-bottom: 2rem" TextAlign="TextAlign.Center" />
|
|
11 <RadzenText Text="Sorry, but there's nothing here!" TextStyle="TextStyle.H6" style="margin: 0" TextAlign="TextAlign.Center" TagName="TagName.P" />
|
|
12 </RadzenColumn>
|
|
13 </RadzenRow>
|
|
14 </LayoutView>
|
|
15 </NotFound>
|
|
16 </Router>
|