mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-13 20:33:38 +00:00
18 lines
571 B
Plaintext
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 /> |