Initial Blazor Server Drone demo

This commit is contained in:
2025-05-21 13:23:37 +02:00
commit ec13b6de0b
8 changed files with 105 additions and 0 deletions

9
MyBlazorApp/App.razor Normal file
View File

@@ -0,0 +1,9 @@
<Router AppAssembly="@typeof(Program).Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" />
</Found>
<NotFound>
<h1>Page not found</h1>
</NotFound>
</Router>