summaryrefslogtreecommitdiff
path: root/Impostor-dev/src/Impostor.Plugins.Debugger/App.razor
blob: 38e8633dd6bf02b8b1f698daccc964569d9d0348 (plain)
1
2
3
4
5
6
7
8
9
10
<Router AppAssembly="@typeof(DebugPlugin).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>