type SubscribeProps<TFeatures, TData, TSelected> = object;
Defined in: Subscribe.ts:12
TFeatures extends TableFeatures
TData extends RowData
TSelected = { }
children: (state) => ReactNode | ReactNode;
Defined in: Subscribe.ts:30
The children to render. Can be a function that receives the selected state, or a React node.
selector: (state) => TSelected;
Defined in: Subscribe.ts:26
A selector function that selects the part of the table state to subscribe to. This allows for fine-grained reactivity by only re-rendering when the selected state changes.
NoInfer<TableState<TFeatures>>
TSelected
table: Table<TFeatures, TData>;
Defined in: Subscribe.ts:21
The table instance to subscribe to. Required when using as a standalone component. Not needed when using as table.Subscribe.