Login
Remember
Register
Ask a Question
Describe Redux's basic principles.
0
votes
asked
Aug 28, 2022
in
Redux
by
john ganales
Describe Redux's basic principles.
redux
principles
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Aug 28, 2022
by
john ganales
Redux's basic principles:
Source of truth: Our application's global state is always stored in an object tree within a single store.
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.
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.
...