mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-11-30 02:58:13 +08:00
20 lines
366 B
C#
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();
|
|
}
|
|
}
|