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