ant-design-blazor/src/AntBlazor/Components/AntLayout/AntLayoutFooter.razor

17 lines
341 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="@Style" @attributes="Attributes" Id="@Id">
@ChildContent
</div>
@code {
[Parameter]
public RenderFragment ChildContent { get; set; }
public AntLayoutFooter()
{
ClassMapper.Add("ant-layout-footer");
}
}