@namespace AntDesign @inherits AntDomComponentBase @typeparam TItem
@if (!HidePagination && PaginationPosition.Contains("top")) { }
@if (ScrollY != null) {
@colGroup(this) @header(this)
@colGroup(this) @for (var i = 0; i < ColumnContext.Columns.Count; i++) { } @body(this)
} else {
@colGroup(this) @header(this) @body(this)
}
@if (!HidePagination && PaginationPosition.Contains("bottom")) { }
@code { RenderFragment> header = table => @; RenderFragment> colGroup = table => @; RenderFragment> body = table => @; }