mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 17:49:05 +00:00
14 lines
409 B
Plaintext
14 lines
409 B
Plaintext
@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>
|
|
|
|
<MudThemeProvider />
|
|
<MudDialogProvider />
|
|
<MudPopoverProvider />
|
|
<MudSnackbarProvider /> |