Files
PlaylistShared/PlaylistShared.PWA2123/Pages/Authentication.razor
2026-04-13 14:16:44 +03: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; }
}