ant-design-blazor/components/layout/Footer.razor

20 lines
366 B
C#
Raw Normal View History

@namespace AntDesign
2019-12-09 00:25:22 +08:00
@inherits AntDomComponentBase
<footer class="@ClassMapper.Class" @ref="Ref" style="@Style" id="@Id">
2019-12-09 00:25:22 +08:00
@ChildContent
2020-03-10 19:03:19 +08:00
</footer>
2019-12-09 00:25:22 +08:00
@code {
[Parameter]
public RenderFragment ChildContent { get; set; }
protected override void OnInitialized()
{
ClassMapper.Add("ant-layout-footer");
base.OnInitialized();
}
2020-03-10 19:03:19 +08:00
}