0 votes
in Redux by
Describe Redux's basic principles.

1 Answer

0 votes
by

Redux's basic principles:

  1. Source of truth: Our application's global state is always stored in an object tree within a single store.
  2. The state is read-only: Our application's state can only be changed by issuing an action, which is an object that describes what happened.
  3. Pure functions are used to make changes: This principle dictates that we must construct pure reducers to define how the actions modify the state tree.

Related questions

0 votes
asked Aug 28, 2022 in Redux by john ganales
0 votes
0 votes
asked Aug 28, 2022 in Redux by john ganales
...