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

17 lines
356 B
Plaintext
Raw Normal View History

2019-12-09 00:25:22 +08:00
@namespace AntBlazor
@inherits AntDomComponentBase
<div class="@ClassMapper.Class" @ref="Ref" style="display: block;@Style" @attributes="Attributes" Id="@Id">
2019-12-09 00:25:22 +08:00
@ChildContent
</div>
@code {
[Parameter]
public RenderFragment ChildContent { get; set; }
public AntLayoutFooter()
{
ClassMapper.Add("ant-layout-footer");
}
}