#learn-coding
Read more stories on Hashnode
Articles with this tag
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...
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...
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...
The key prop being unique is very important for rendering list elements in React. Is it just enough if it's unique? Not really. We talked about it...
Handling form inputs is a very important part of building user interfaces and React offers a few options for inputs. In this chapter, we will learn...
Now that we know enough about useState and state variables, let us pick up the pace now and build a Tabs component that shows different content based...