mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-02 20:17:58 +08:00
20 lines
363 B
C#
20 lines
363 B
C#
@namespace AntDesign
|
|
@inherits AntDomComponentBase
|
|
|
|
<main class="@ClassMapper.Class" @ref="Ref" style="@Style" id="@Id">
|
|
@ChildContent
|
|
</main>
|
|
|
|
@code {
|
|
[Parameter]
|
|
public RenderFragment ChildContent { get; set; }
|
|
|
|
protected override void OnInitialized()
|
|
{
|
|
ClassMapper.Add("ant-layout-content");
|
|
|
|
base.OnInitialized();
|
|
}
|
|
|
|
}
|