blackjack/Components/Routes.razor

20 lines
607 B
Plaintext
Raw Normal View History

2025-04-16 14:27:41 +07:00
@using Microsoft.AspNetCore.Components.Web
@using Microsoft.AspNetCore.Components.Routing
<Router AppAssembly="@typeof(Program).Assembly">
<Found Context="routeData">
2025-04-16 14:27:41 +07:00
@if (routeData.PageType.Name == "Index" || string.IsNullOrEmpty(routeData.PageType.Name))
{
<Navigate href="/blackjack" />
}
else
{
<RouteView RouteData="@routeData" />
}
</Found>
2025-04-16 14:27:41 +07:00
<NotFound>
<PageTitle>Не найдено</PageTitle>
<p role="alert">Извините, страница не найдена.</p>
</NotFound>
</Router>