TanStack

AppCellPropsWithSelector

Interface: AppCellPropsWithSelector<TFeatures, TData, TValue, TCellComponents, TSelected>

Defined in: react-table/src/createTableHook.tsx:415

Props for AppCell component - with selector

Type Parameters

TFeatures

TFeatures extends TableFeatures

TData

TData extends RowData

TValue

TValue extends CellData

TCellComponents

TCellComponents extends Record<string, ComponentType<any>>

TSelected

TSelected

Properties

cell

ts
cell: Cell<TFeatures, TData, TValue>;

Defined in: react-table/src/createTableHook.tsx:422


children()

ts
children: (cell, state) => ReactNode;

Defined in: react-table/src/createTableHook.tsx:423

Parameters

cell

Cell_Core<TFeatures, TData, TValue> & ExtractFeatureMapTypes<TFeatures, Cell_FeatureMap> & TCellComponents & object

state

TSelected

Returns

ReactNode


selector()

ts
selector: (state) => TSelected;

Defined in: react-table/src/createTableHook.tsx:428

Parameters

state

TableState<TFeatures>

Returns

TSelected