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

13 lines
260 B
Plaintext
Raw Normal View History

2019-12-09 00:25:22 +08:00
@namespace AntBlazor
@inherits AntDomComponentBase
2020-03-10 19:03:19 +08:00
<footer class="@ClassMapper.Class" @ref="Ref" style="@Style" @attributes="Attributes" 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
}