Escali License control 1
App.razor
Gå til dokumentasjonen til denne filen.
1<Router AppAssembly="@typeof(App).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 <p role="alert">Sorry, there's nothing at this address.</p>
9 </LayoutView>
10 </NotFound>
11</Router>