@namespace Nejcraft.Shared
@typeparam TItem
@inherits Nejcraft.Shared.Parts.NejComponentBase
@Title
@code {
[Parameter]
public string Title { get; set; } = default!;
[Parameter]
public RenderFragment ChildContent { get; set; } = default!;
[CascadingParameter]
public DataTable Table { get; set; } = default!;
protected override void OnInitialized(){
base.OnInitialized();
Table.AddColumn(this);
}
}