type SubscribePropsWithSourceWithSelector<TSourceValue, TSelected> = object;Defined in: react-table/src/Subscribe.ts:51
Subscribe to a projected value from a source (atom or store). The selector receives the source value; children receive the projected TSelected.
TSourceValue
TSelected
children: (state) => ReactNode | ReactNode;Defined in: react-table/src/Subscribe.ts:54
selector: (state) => TSelected;Defined in: react-table/src/Subscribe.ts:53
TSourceValue
TSelected
source: SubscribeSource<TSourceValue>;Defined in: react-table/src/Subscribe.ts:52