Files
game-ideas/src/GameIdeas/Client/GameIdeas.BlazorApp/App.razor
Egamorf 4183b4b616 Add header for game list (#3)
Co-authored-by: Maxime Adler <madler@sqli.com>
Reviewed-on: #3
2025-02-27 01:09:05 +01:00

15 lines
501 B
Plaintext

@using GameIdeas.BlazorApp.Layouts
<Router AppAssembly="@typeof(App).Assembly">
<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>