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

13 lines
232 B
Plaintext
Raw Normal View History

@namespace AntBlazor
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; }
2020-03-10 19:03:19 +08:00
}