1
0
mirror of synced 2025-01-10 04:01:46 +01:00

13 lines
427 B
Plaintext
Raw Normal View History

2024-03-27 12:49:27 -04:00
@using TaikoWebUI.Components;
2022-09-05 01:19:42 +08:00
<Router AppAssembly="@typeof(App).Assembly">
<Found Context="routeData">
2024-03-09 16:41:25 -05:00
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
2022-09-05 01:19:42 +08: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>