Ítalo Andrade
React hooks is one of the best things that happened to Reactjs. Thanks for sharing this.
Great article, Sabin. 👏
The hyperlink from "Managing State with React Hooks" is pointing to your old blog. Please update it.
Thanks Sabin Adams for sharing..Hooks are my favorite companion this week! Loved your explanations.
Really nice article. I myself really love using Hooks and like using the Context API for shared state management.
I also think it is nice to mention that even if you're not using all the properties from the Context value, all the components that are using the
useContexthook will still be re-rendered after dispatching any action even if you're not "listening" to the property your action changed. Because of that I don't think it is fair comparing using this implementation instead of state management libraries (that uses selectors).