Renamed project to CCharLearn

This commit is contained in:
BOT Alex 2023-07-07 19:41:56 +02:00
parent a6f55347b8
commit 591c3307a9
233 changed files with 16 additions and 17 deletions

16
CCharLearn/App.razor Normal file
View file

@ -0,0 +1,16 @@
<Router AppAssembly="@typeof(App).Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
</Found>
<NotFound>
<PageTitle>Not found</PageTitle>
<LayoutView Layout="@typeof(MainLayout)">
<p role="alert">Sorry, there's nothing at this address.</p>
</LayoutView>
</NotFound>
</Router>
<MudThemeProvider IsDarkMode=true/>
<MudDialogProvider />
<MudSnackbarProvider />