#web-development
Read more stories on Hashnode
Articles with this tag
This week, we will be talking about the new React 19 updates and hooks. Having gone through and using some of these new updates, I can only agree that...
Optimizing your application to increase performance should be the goal of every developer. Like me, I know a lot of internet users would rather shut...
useState hook as we discussed in one part of the series, helps in handling state management. However, useState is used for simple state management....
Props help you pass down data from parent to child components. By so doing, it's using the flow system of data passage (top to bottom) to get that...
If you want to update the value of an element in your component or access any DOM elements, then the useRef() hook is your go-to. When updating state...
Welcome back to our React Series. I want to believe you had a good grasp of the useState hook in the last class. There is so much more hooks will do...