1
0
mirror of synced 2024-11-28 08:30:56 +01:00
TaikoLocalServer/TaikoWebUI/App.razor

11 lines
396 B
Plaintext
Raw Normal View History

2022-09-04 19:19:42 +02:00
<Router AppAssembly="@typeof(App).Assembly">
<Found Context="routeData">
2024-03-09 22:41:25 +01:00
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
2022-09-04 19:19:42 +02:00
</Found>
<NotFound>
<PageTitle>Not found</PageTitle>
<LayoutView Layout="@typeof(MainLayout)">
<p role="alert">Sorry, there's nothing at this address.</p>
</LayoutView>
</NotFound>
</Router>