ant-design-blazor/components/layout/Footer.razor
2020-05-29 00:33:49 +08:00

20 lines
366 B
C#

@namespace AntDesign
@inherits AntDomComponentBase
<footer class="@ClassMapper.Class" @ref="Ref" style="@Style" id="@Id">
@ChildContent
</footer>
@code {
[Parameter]
public RenderFragment ChildContent { get; set; }
protected override void OnInitialized()
{
ClassMapper.Add("ant-layout-footer");
base.OnInitialized();
}
}