type AppCellContext<TFeatures, TData, TValue, TCellComponents> = object;Defined in: react-table/src/createTableHook.tsx:48
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: react-table/src/createTableHook.tsx:54
FlexRender: () => ReactNode;ReactNode
column: Column<TFeatures, TData, TValue>;Defined in: react-table/src/createTableHook.tsx:56
getValue: CellContext<TFeatures, TData, TValue>["getValue"];Defined in: react-table/src/createTableHook.tsx:57
renderValue: CellContext<TFeatures, TData, TValue>["renderValue"];Defined in: react-table/src/createTableHook.tsx:58
row: Row<TFeatures, TData>;Defined in: react-table/src/createTableHook.tsx:59
table: Table<TFeatures, TData>;Defined in: react-table/src/createTableHook.tsx:60