mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 17:31:42 +08:00
17 lines
341 B
Plaintext
17 lines
341 B
Plaintext
|
@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");
|
||
|
}
|
||
|
}
|