BlazorStart/Start/Client/Pages/Authentication.razor
2021-11-12 19:21:59 -08:00

8 lines
206 B
Plaintext

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