Add chapter 12 blazor project

This commit is contained in:
Alvin Ashcraft
2023-08-27 14:35:28 -04:00
parent 7ba92b1abd
commit 48f651f395
34 changed files with 1411 additions and 0 deletions
@@ -0,0 +1,12 @@
<Router AppAssembly="@typeof(App).Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
</Found>
<NotFound>
<PageTitle>Not found</PageTitle>
<LayoutView Layout="@typeof(MainLayout)">
<p role="alert">Sorry, there's nothing at this address.</p>
</LayoutView>
</NotFound>
</Router>