Authentication.razor 205 B

1234567
  1. @page "/authentication/{action}"
  2. @using Microsoft.AspNetCore.Components.WebAssembly.Authentication
  3. <RemoteAuthenticatorView Action="@Action" />
  4. @code{
  5. [Parameter] public string Action { get; set; }
  6. }