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