Files
jsmr/JSMR.UI.Blazor/App.razor
Brian Bicknell 840bec72d2
All checks were successful
ci / build-test (push) Successful in 1m35s
ci / publish-image (push) Has been skipped
Added Blazor projects. Minor API/core updates.
2025-11-07 22:18:04 -05:00

13 lines
465 B
Plaintext

<Router AppAssembly="@typeof(App).Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
</Found>
<NotFound>
<PageTitle>Not found</PageTitle>
<LayoutView Layout="@typeof(MainLayout)">
<p role="alert">Sorry, there's nothing at this address.</p>
</LayoutView>
</NotFound>
</Router>