-
Notifications
You must be signed in to change notification settings - Fork 144
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Selectors? #25
Comments
"selector" is designed for solo-store solutions like redux, since they need to avoid rerendering for unaffected nodes. For multi-store case, you'd better have another container if these states are irrelevant. |
There do seem to be some solutions about using only part of what |
I see that there's documentation in the README for this, under the "Optimizing components" section. Was that not there before, or did I miss it earlier? 😅 |
How would one go about adding selectors to a container?
For example, if a component wanted to use only the
count
variable from this container, it shouldn't re-render whenanotherCount
is changed.The text was updated successfully, but these errors were encountered: