function useSelector<TSource, TSelected>(
source,
selector?,
options?): Accessor<TSelected>;Defined in: node_modules/.pnpm/@tanstack+solid-store@0.11.0_solid-js@1.9.13/node_modules/@tanstack/solid-store/dist/useSelector.d.ts:34
Selects a slice of state from an atom or store and subscribes the component to that selection.
This is the primary Solid read hook for TanStack Store. It returns a Solid accessor so consumers can read the selected value reactively.
Omit the selector to subscribe to the whole value.
TSource
TSelected = NoInfer<TSource>
SelectionSource<TSource>
(snapshot) => TSelected
UseSelectorOptions<TSelected>
Accessor<TSelected>
const count = useSelector(counterStore, (state) => state.count)
return <p>{count()}</p>const value = useSelector(countAtom)