#1 Data Analytics Program in India
₹2,499₹1,499Enroll Now
6 min read
Question 21 of 48medium

useReducer Hook

Managing complex state logic.

What is useReducer?

useReducer is an alternative to useState for complex state logic. It's similar to Redux pattern.

When to Use

  • Multiple sub-values in state
  • Next state depends on previous
  • Complex state transitions
  • Passing dispatch down instead of callbacks