18 lines
555 B
Plaintext
18 lines
555 B
Plaintext
@using GPW.CORE.Shared.Smart.Layout
|
|
@using GPW.CORE.Smart10.Client.Component.Layout
|
|
@using Microsoft.AspNetCore.Components.WebAssembly.Hosting
|
|
|
|
<Router AppAssembly="@typeof(Program).Assembly">
|
|
<Found Context="routeData">
|
|
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
|
|
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
|
|
</Found>
|
|
<NotFound>
|
|
<LayoutView Layout="@typeof(MainLayout)">
|
|
<p>Page not found</p>
|
|
</LayoutView>
|
|
</NotFound>
|
|
</Router>
|
|
|
|
<ClientActivator />
|