Files
deepdrft/DeepDrftManager/Components/Pages/Index.razor
T
2026-06-06 09:52:50 -04:00

14 lines
227 B
Plaintext

@page "/"
@attribute [Authorize]
@layout Layout.CmsLayout
@inject NavigationManager Nav
<PageTitle>DeepDrft CMS</PageTitle>
@code {
protected override void OnInitialized()
{
Nav.NavigateTo("/tracks");
}
}