useSelector
Callable
Type parameters
- S
- R
Parameters
source$: Observable<S>
an observable for values
initialValue: S
th first value which is returned by the hook
selector: (state: S) => R
a transform function for getting a derived value based on the source value
comparator: (v1: R, v2: R) => boolean = defaultEquals
a comparator for previous and next values
Returns R
Returns a value provided by
source$
.The hook returns the initial value and subscribes on the
source$
. After that, the hook returns values which are provided by the source.