Back to search

Redux basics, Redux flow, Redux Toolkit, Thunk, Saga, and when Redux is overkill

Redux organizes state around actions, reducers, a store, and dispatch, and Redux Toolkit is now the preferred modern way to write Redux code.

React Hard Theory

Redux basics, Redux flow, Redux Toolkit, Thunk, Saga, and when Redux is overkill

Redux organizes state around actions, reducers, a store, and dispatch, and Redux Toolkit is now the preferred modern way to write Redux code.

  • Actions describe what happened
  • Reducers compute the next state
  • Middleware handles async or side effects around dispatch

Redux basics, Redux flow, Redux Toolkit, Thunk, Saga, and when Redux is overkill