type AppCellContext<TFeatures, TData, TValue, TCellComponents> = object;Defined in: createTableHook.tsx:45
Enhanced CellContext with pre-bound cell components. The cell property includes the registered cellComponents.
TFeatures extends TableFeatures
TData extends RowData
TValue extends CellData
TCellComponents extends Record<string, ComponentType<any>>
cell: Cell<TFeatures, TData, TValue> & TCellComponents & object;Defined in: createTableHook.tsx:51
FlexRender: () => ComponentChildren;ComponentChildren
column: Column<TFeatures, TData, TValue>;Defined in: createTableHook.tsx:53
getValue: CellContext<TFeatures, TData, TValue>["getValue"];Defined in: createTableHook.tsx:54
renderValue: CellContext<TFeatures, TData, TValue>["renderValue"];Defined in: createTableHook.tsx:55
row: Row<TFeatures, TData>;Defined in: createTableHook.tsx:56
table: Table<TFeatures, TData>;Defined in: createTableHook.tsx:57