Files
TechHelper/TechHelper.Client/Pages/Authentication.razor
2025-05-23 19:03:00 +08:00

8 lines
209 B
Plaintext

@page "/authentication/{action}"
@using Microsoft.AspNetCore.Components.WebAssembly.Authentication
<RemoteAuthenticatorView Action="@Action" />
@code{
[Parameter] public string? Action { get; set; }
}