BlazorStart/Start/Client/Pages/Authentication.razor

8 lines
206 B
Plaintext
Raw Normal View History

2021-11-13 03:21:59 +00:00
@page "/authentication/{action}"
@using Microsoft.AspNetCore.Components.WebAssembly.Authentication
<RemoteAuthenticatorView Action="@Action" />
@code{
[Parameter] public string? Action { get; set; }
}