Squirrowse/Squirrowse.Web/App.razor
danielgrabowski 7ee7ebc4b3 Cleanup
2019-11-07 11:52:27 +01:00

10 lines
348 B
Plaintext

<Router AppAssembly="@typeof(Program).Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)"/>
</Found>
<NotFound>
<LayoutView Layout="@typeof(MainLayout)">
<p>Sorry, there's nothing at this address.</p>
</LayoutView>
</NotFound>
</Router>