Move and rename Blazor project

This commit is contained in:
2024-03-07 21:23:37 +00:00
parent 3affeac196
commit a18b68beca
27 changed files with 1870 additions and 13 deletions

View File

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