Files
SteUP_Dotnet/SteUp.Shared/Components/Pages/Index.razor

13 lines
232 B
Plaintext

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