blazor server added

This commit is contained in:
2021-10-13 09:29:56 -04:00
parent 2d2535f351
commit 61697bf9f7
60 changed files with 2463 additions and 0 deletions

10
Web/App.razor Normal file
View File

@@ -0,0 +1,10 @@
<Router AppAssembly="@typeof(Program).Assembly" PreferExactMatches="@true">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)"/>
</Found>
<NotFound>
<LayoutView Layout="@typeof(MainLayout)">
<p>Sorry, there's nothing at this address.</p>
</LayoutView>
</NotFound>
</Router>