You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Where selector is a function taking for single argument the entire redux Store's state (a plain JS object) and returns another object, which is the slice of the state that your component is interested in.
@@ -24,7 +26,7 @@ Note: if you are not familiar with this syntax, go and check out the [MDN Guide
24
26
If you haven't, check out [reselect](https://github.com/faassen/reselect), an awesome tool to create and combine selectors.
25
27
26
28
27
-
This returned object will be passed as single argument to the callback provided whenever the state changes.
29
+
This returned object will be passed as argument to the callback provided whenever the state changes.
28
30
ngRedux checks for shallow equality of the state's selected slice whenever the Store is updated, and will call the callback only if there is a change.
0 commit comments