2020-06-20 22:02:20 +02:00
|
|
|
<Router AppAssembly="@typeof(Program).Assembly">
|
2019-11-06 17:02:06 +01:00
|
|
|
<Found Context="routeData">
|
2019-11-07 11:52:27 +01:00
|
|
|
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)"/>
|
2019-11-06 17:02:06 +01:00
|
|
|
</Found>
|
|
|
|
<NotFound>
|
|
|
|
<LayoutView Layout="@typeof(MainLayout)">
|
|
|
|
<p>Sorry, there's nothing at this address.</p>
|
|
|
|
</LayoutView>
|
|
|
|
</NotFound>
|
2019-11-07 11:52:27 +01:00
|
|
|
</Router>
|