Files
limanapp/LiMan.UI/App.razor
T
Samuele Locatelli 8d4671fdc8 Blazor empty app
2021-10-07 16:36:56 +02:00

11 lines
374 B
Plaintext

<Router AppAssembly="@typeof(Program).Assembly" PreferExactMatches="@true">
<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>