Files
SteUP_Dotnet/SteUp.Shared/Components/Pages/Index.razor
2026-02-06 18:08:40 +01:00

12 lines
236 B
Plaintext

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