mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
14 lines
406 B
Plaintext
14 lines
406 B
Plaintext
@using Wabbajack.App.Blazor.Shared
|
|
|
|
<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>
|