Files
SteUP_Dotnet/SteUp.Shared/Components/Pages/Index.razor
2026-02-06 10:04:36 +01:00

12 lines
231 B
Plaintext

@page "/"
@using SteUp.Shared.Components.Layout.Spinner
@attribute [Authorize]
<SpinnerLayout FullScreen="true"/>
@code {
protected override void OnInitialized()
{
NavigationManager.NavigateTo("/home");
}
}