Entwicklung_BLAZOR/LambertzPortal/LambertzPortal/Components/Routes.razor
2026-03-13 11:17:08 +01:00

10 lines
353 B
Plaintext

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