aboutsummaryrefslogtreecommitdiff
path: root/Web/App.razor
blob: e10dd7532f87b63457d31a1ddf2ece0c2d3851eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
<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>