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