UI_SequentMicrosystems-RPI/App.razor

19 lines
606 B
Plaintext
Raw Normal View History

2023-12-17 17:09:39 +00:00

<Blazored.Modal.CascadingBlazoredModal>
<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>
2023-12-17 17:09:39 +00:00
</Blazored.Modal.CascadingBlazoredModal>
@code{
}