#reactjs
Read more stories on Hashnode
Articles with this tag
Traditionally, when you wanted to filter your data using React, you would first store the original data in local state, with the useState hook. There...
Today we'll do a quick exploration of Next.js Server Actions and how you can mix them into React Client Side Components. We start with a sample app...
Let's add a dynamic sitemap.xml file to our Next.js blog, built using the new Next.js App Router. We'll also add some helpful metadata tags including...
We dive into React's useReducer hook and see how we can use it to manage complex state. We first compare useState and useReducer and slowly add on to...
https://www.youtube.com/watch?v=4BranN3qnDU&ab_channel=CodeBushi Key Takeaways From The Video: 4:40 - When a Parent Component re-renders, all Child...
When managing React state with the new useReducer hook, you may find that there are commonly repeated action types and logic in your reducer...