wabbajack/Wabbajack.App.Blazor/Main.razor

14 lines
406 B
Plaintext
Raw Normal View History

2022-01-28 11:58:28 +00:00
@using Wabbajack.App.Blazor.Shared
2022-01-11 15:05:48 +00:00
<CascadingBlazoredModal>
<Router AppAssembly="@GetType().Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)"/>
</Found>
<NotFound>
<h1>Not found</h1>
<p>Sorry, there's nothing here.</p>
</NotFound>
</Router>
</CascadingBlazoredModal>