Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Redux. Transform and place all data returned by the APIs into a global application store.

  2. React Context.Transform and place all data returned by the APIs into component-based context.

  3. React State.Transform and place all data returned by the APIs into component-based state.

  4. Composition.

  5. Blend of all the above.

Historically, using Redux came with a fair amount of repetitive boilerplate that would make working with it a bit cumbersome, though many of the concerns around boilerplate were mitigated through the use of @reduxjs/toolkit.

...