ant-design-blazor/tests/AntDesign.TestApp/Client/Pages/Authentication.razor
James Yeung 783fddf4ef feat(module: tabs): add context menu and page config for ReuseTabs (#2075)
* feat(module: tabs): add context menu

* fix missing body

* remove icon

* add context menu de
2021-11-04 00:46:20 +08:00

12 lines
254 B
C#

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