SharpRSS/SharpRSS.Blazor/Components/Routes.razor
2024-07-13 16:29:27 +02:00

13 lines
477 B
Plaintext

<Router AppAssembly="typeof(Program).Assembly">
<Found Context="routeData">
<RouteView RouteData="routeData" DefaultLayout="typeof(Layout.MainLayout)"/>
<FocusOnNavigate RouteData="routeData" Selector="h1"/>
</Found>
<NotFound>
<LayoutView Layout="@typeof(EmptyLayout)">
@*TODO: Manage not found*@
<PageTitle>Not found!</PageTitle>
<p>Page not found!</p>
</LayoutView>
</NotFound>
</Router>