Notes to SelfYenly

Redux

  • Reducer state must be composed of immutable objects.
  • If there is a change in state, the old object is not changed, but it is replaced with a new, changed object.
  • [Connect Function]
  • [UseSelector]
  • [UseDispatch]

redux-thunk

  • [Update Backend Data Using Async Action Creator]

To Review

  • You Might Not Need Redux
  • Possible to implement redux-like state management without redux by using React context-api and useReducer-hook.