useRecoilSelectorState<T> function

T useRecoilSelectorState<T>(
  1. Selector<T> selector
)

Returns the value of Selector and subscribes the components to future updates of related Atom state.

See also:

Implementation

T useRecoilSelectorState<T>(Selector<T> selector) => _useRecoilState(selector);