Files
radzen-blazor/RadzenBlazorDemos/Routes.razor
2025-10-15 09:21:36 +03:00

12 lines
342 B
Plaintext

@using RadzenBlazorDemos.Pages
<Router AppAssembly="typeof(Routes).Assembly">
<Found Context="routeData">
<RouteView RouteData="routeData" DefaultLayout="typeof(MainLayout)" />
</Found>
<NotFound>
<LayoutView Layout="typeof(MainLayout)">
<NotFound />
</LayoutView>
</NotFound>
</Router>