-
Notifications
You must be signed in to change notification settings - Fork 18
Class 31 Application State
Erin Trainor edited this page May 1, 2019
·
1 revision
Resource - Understanding Redux: The World’s Easiest Guide to Beginning Redux
Helps you write applications that behave consistently
Have a single source of truth: The state of your whole application is stored in an object tree within a single Redux store.
State is read-only:
The only way to change the state is to emit an action, an object describing what happened.
To specify how the state tree is transformed by actions, you write pure reducers.