@inject IJSRuntime JS
@code { [Parameter] public Func>> PicsFunc { get; set; } [Parameter] public bool Editable { get; set; } = false; [Parameter] public EditPicDialog? Dialog { get; set; } private async ValueTask> GetPics(ItemsProviderRequest request) { return await this.PicsFunc(request); } }