1
0
mirror of synced 2024-11-28 00:20:53 +01:00
TaikoLocalServer/TaikoWebUI/App.razor

13 lines
427 B
Plaintext
Raw Normal View History

2024-03-27 17:49:27 +01:00
@using TaikoWebUI.Components;
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>