Home » React

React

usereducer hook

useReducer hook in React

When building complex applications in React, managing state becomes a critical aspect of our app’s behavior. Sometimes, managing state with the simple useState hook is sufficient, but as our application grows, we might need a… Read More »useReducer hook in React

react custom hooks

React Custom Hooks

When building React applications, we often find ourselves writing the same code over and over. For example, we might need to track whether an element is being hovered over, or we might want to know… Read More »React Custom Hooks