shopping-cart-blazor-wasm/Client/App.razor

13 lines
465 B
Text
Raw Permalink Normal View History

2021-11-09 11:44:08 +01:00
<Router AppAssembly="@typeof(App).Assembly">
2020-06-19 10:20:16 +02:00
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
2021-11-09 11:44:08 +01:00
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
2020-06-19 10:20:16 +02:00
</Found>
<NotFound>
2021-11-09 11:44:08 +01:00
<PageTitle>Not found</PageTitle>
2020-06-19 10:20:16 +02:00
<LayoutView Layout="@typeof(MainLayout)">
2021-11-09 11:44:08 +01:00
<p role="alert">Sorry, there's nothing at this address.</p>
2020-06-19 10:20:16 +02:00
</LayoutView>
</NotFound>
</Router>