53 followers
Web Engineer, Trainer and Codementor.
Subscribe to my newsletter and never miss my upcoming articles
React Hooks are ridiculously easy to use but they seem almost magical to be true. How do they even work? It’s important that we figure this out before we start using hooks more and more. *Note: This article is a part of the Delightful React Series,...
If you’re like me, you’ve probably used React state to manually manage the component state and modify it as it changes. This can get very complex and tedious to maintain. That’s why I want to help you learn how XState can help make your life easier. ...
So in the last chapter we talked about the magic of custom hooks and how custom hooks help us in modularizing, our react code. In this chapter we will see how we can build a custom Dropdown component and use the custom hook that we created earlier....
We talked about a couple of hooks so far useState and useEffect in our previous chapters. But the best is yet to come! *Note: This article is a part of the Delightful React Series, as part of which, I am releasing one chapter every day for 25 days....
I live on Hashnode and Github now. So I thought, how can I show my Hashnode contributions on my Github Profile Readme? Note: This post is a little intense if you are a Git beginner but source code to all of this tutorial is linked to the bottom of ...
When something changes in a component, there are things you might want to do. For eg, a user types text into an autocomplete search input, then you might want to fetch autocomplete suggestions by making a call to server and fetch suggestions. Som...