BlazorBlog created. I don't know where I was at...

This commit is contained in:
Tracy Pearson
2021-12-10 00:25:20 -05:00
parent 38cfa06533
commit ce5aee2679
33 changed files with 1382 additions and 0 deletions

11
BlazorBlog/App.razor Normal file
View File

@@ -0,0 +1,11 @@

<Router AppAssembly="@typeof(Program).Assembly">
<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>