Hacker News new | ask | show | jobs
by iimblack 2229 days ago
Coming from Clojurescript and using libraries like Re-Frame it feels much more natural to me to have a central store for most state. Sure I also use component state but I leave that for very simple cases. It seems like Context could also provide something like this but I'm not sure how it handles re-renders. If one part of my Context state is modified, do all Consumers re-render? Or just the ones that would be affected?
1 comments

All of them. I’d say that’s the biggest problem recoil is addressing.