wabbajack/Wabbajack.App.Blazor/Main.razor

14 lines
358 B
Plaintext
Raw Permalink Normal View History

2022-01-11 15:05:48 +00:00
<Fluxor.Blazor.Web.StoreInitializer/>
2022-01-20 08:34:38 +00:00
@using Wabbajack.App.Blazor.Shared
2022-01-11 15:05:48 +00:00
<Router AppAssembly="@GetType().Assembly">
2022-01-09 13:33:22 +00:00
<Found Context="routeData">
2022-01-20 08:34:38 +00:00
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)"/>
2022-01-09 13:33:22 +00:00
</Found>
<NotFound>
<h1>Not found</h1>
<p>Sorry, there's nothing here.</p>
</NotFound>
2022-01-20 08:34:38 +00:00
</Router>