function flexRender<TProps>(Comp, props): string | TemplateResult | null;function flexRender<TProps>(Comp, props): string | TemplateResult | null;Defined in: flexRender.ts:22
Renders a Lit table template value with the provided context props.
Use this lower-level helper for custom header, cell, or footer renderers when you already have the render function and context. FlexRender is the convenience wrapper for table cell/header/footer objects.
TProps
string | TemplateResult | (props) => string | TemplateResult | undefined
TProps
string | TemplateResult | null
flexRender(cell.column.columnDef.cell, cell.getContext())flexRender(cell.column.columnDef.cell, cell.getContext())