wabbajack/Wabbajack.App.Blazor/Main.razor

11 lines
329 B
Plaintext
Raw Normal View History

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