Files
Samuele Locatelli 08e037ac45 Spostamento progetti
2026-03-27 10:31:53 +01:00

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 />