10 lines
233 B
Plaintext
10 lines
233 B
Plaintext
@using Microsoft.AspNetCore.Components.WebAssembly.Authentication
|
|
@inject NavigationManager Navigation
|
|
|
|
@code {
|
|
protected override void OnInitialized()
|
|
{
|
|
Navigation.NavigateToLogin("authentication/login");
|
|
}
|
|
}
|