Add project files.

This commit is contained in:
2020-09-28 21:48:44 +02:00
parent 566990d7f7
commit 033d4c181d
32 changed files with 1381 additions and 0 deletions

11
BasicDemo/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>