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

13 lines
260 B
Plaintext

@namespace AntBlazor
@inherits AntDomComponentBase
<footer class="@ClassMapper.Class" @ref="Ref" style="@Style" @attributes="Attributes" Id="@Id">
@ChildContent
</footer>
@code {
[Parameter]
public RenderFragment ChildContent { get; set; }
}