Add Photino project

This commit is contained in:
Matthew Parker [SSW]
2024-11-21 20:48:11 +10:00
parent dbb5609500
commit 5277a7eb70
17 changed files with 449 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<Router AppAssembly="@typeof(Program).Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)"/>
</Found>
<NotFound>
<PageTitle>Not found</PageTitle>
<LayoutView Layout="@typeof(MainLayout)">
<p role="alert">Sorry, there's nothing at this address.</p>
</LayoutView>
</NotFound>
</Router>
@code
{
}