Files
dotnettest/MyBlazorApp/App.razor
Jakub Žáček ec13b6de0b
Some checks failed
continuous-integration/drone/push Build is failing
Initial Blazor Server Drone demo
2025-05-21 13:23:37 +02:00

10 lines
213 B
Plaintext

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