CrossPlatformBlazorSuite/DeviceApplication/Main.razor

14 lines
526 B
Plaintext
Raw Normal View History

2024-04-20 15:05:16 +00:00
@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>