ant-design-blazor/tests/AntDesign.TestApp/Client/Pages/Authentication.razor

12 lines
254 B
C#
Raw Normal View History

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