function FlexRender<TFeatures, TData, TValue>(props): any;Defined in: flexRender.ts:76
Simplified wrapper of flexRender. Use this utility function to render headers, cells, or footers with custom markup. Only one prop (cell, header, or footer) may be passed.
TFeatures extends TableFeatures
TData extends RowData
TValue extends unknown = unknown
FlexRenderProps<TFeatures, TData, TValue>
any
<th x-html="FlexRender({ header })"></th>
<td x-html="FlexRender({ cell })"></td>
<th x-html="FlexRender({ footer: header })"></th>