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

20 lines
363 B
C#
Raw Normal View History

@namespace AntDesign
2019-12-09 00:25:22 +08:00
@inherits AntDomComponentBase
<main class="@ClassMapper.Class" @ref="Ref" style="@Style" id="@Id">
2019-12-09 00:25:22 +08:00
@ChildContent
</main>
2019-12-09 00:25:22 +08:00
@code {
[Parameter]
public RenderFragment ChildContent { get; set; }
protected override void OnInitialized()
2019-12-09 00:25:22 +08:00
{
ClassMapper.Add("ant-layout-content");
base.OnInitialized();
2019-12-09 00:25:22 +08:00
}
}