First results converting receiver-ui-react into a Blazor Web App

This commit is contained in:
OlgunR
2025-12-08 16:21:10 +01:00
parent 751ea706df
commit 562ceb9c3f
27 changed files with 786 additions and 557 deletions

View File

@@ -0,0 +1,13 @@
@using Microsoft.AspNetCore.Components.Routing
<Router AppAssembly="@typeof(App).Assembly">
<Found Context="routeData">
<RouteView RouteData="routeData" DefaultLayout="typeof(MainLayout)" />
<FocusOnNavigate RouteData="routeData" Selector="h1" />
</Found>
<NotFound>
<LayoutView Layout="typeof(MainLayout)">
<p role="alert">Sorry, there's nothing at this address.</p>
</LayoutView>
</NotFound>
</Router>