Add project files.

This commit is contained in:
t.ruspekhofer 2022-02-13 19:54:35 +01:00
parent d867fa03f3
commit 00c33a335c
41 changed files with 1543 additions and 0 deletions

12
Lieb/App.razor Normal file
View file

@ -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>