One of the sweet but sometimes difficult to figure out part of React is reusing stateful logic across various components. Instead of rewriting ...
For further actions, you may consider blocking this person and/or reporting abuse
Nice post! Can you make another example using hooks to get user information (for example) across the other hooks?
If I understand correctly you mean a hook that fetches user's information so that it is available for use across various components?
Yes, correct, I think it can be useful to understand more hooks with your examples.
Alright, I will do something and send you a sandbox link, in the meantime, you should check my other article on useContext. That will also be helpful
I read your post about useContext and I learned a lot of, great explanation mate!
What was that sandbox link? I'd love to see a custom hook Sharing a consistent State across components. I feel like you can only do it with context, no?
If by consistent you mean a global state, then you can only do that with context or any store that holds global state. Just create a hook that consumes your store
Awesome post. Well explained with a simple example.
well done, well implemented
Nice one!
Thanks for sharing! it was really useful to grasp hooks