Create new project using blazorwasm dotnet new template

This commit is contained in:
2026-01-26 21:18:04 +01:00
commit f743332a1e
63 changed files with 60591 additions and 0 deletions

6
App.razor Normal file
View File

@@ -0,0 +1,6 @@
<Router AppAssembly="@typeof(App).Assembly" NotFoundPage="typeof(Pages.NotFound)">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)"/>
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
</Found>
</Router>