ResuMe/Resume.Blazor/App.razor

14 lines
466 B
Plaintext
Raw Normal View History

2024-05-11 13:56:12 +03:30

<Router AppAssembly="@typeof(App).Assembly">
2023-07-24 16:28:09 +03:30
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
</Found>
<NotFound>
<PageTitle>Not found</PageTitle>
<LayoutView Layout="@typeof(MainLayout)">
<p role="alert">Sorry, there's nothing at this address.</p>
</LayoutView>
</NotFound>
</Router>