AI-Studio/app/MindWork AI Studio/Routes.razor
2026-09-10 15:28:08 +02:00

18 lines
571 B
Plaintext

@using AIStudio.Components
@using Microsoft.AspNetCore.Components.Routing
@using MudBlazor
<Router AppAssembly="typeof(Program).Assembly">
<Found Context="routeData">
<RouteView RouteData="routeData" DefaultLayout="typeof(Layout.MainLayout)"/>
<FocusOnNavigate RouteData="routeData" Selector="h1"/>
</Found>
</Router>
<MudDialogProvider />
<MudPopoverProvider />
<MudSnackbarProvider />
@* Outside the router on purpose: which drop zone a drop belongs to is a question of the whole
session, not of the current page. *@
<DropZoneArbiter />