12 lines
559 B
Plaintext
12 lines
559 B
Plaintext
<Router AppAssembly="@typeof(SharedComponents.Shared.SharedMainLayout).Assembly">
|
|
<Found Context="routeData">
|
|
<RouteView RouteData="@routeData" DefaultLayout="@typeof(SharedComponents.Shared.SharedMainLayout)"/>
|
|
<FocusOnNavigate RouteData="@routeData" Selector="h1"/>
|
|
</Found>
|
|
<NotFound>
|
|
<PageTitle>Not found</PageTitle>
|
|
<LayoutView Layout="@typeof(SharedComponents.Shared.SharedMainLayout)">
|
|
<p role="alert">Sorry, there's nothing at this address.</p>
|
|
</LayoutView>
|
|
</NotFound>
|
|
</Router> |