Redux Basic Tutorial
In the bank form filling method, you can store money and also get the money.
Bank Scenario |
Redux |
Principle (Purpose) |
---|---|---|
Bank |
Store |
The single source of truth where the entire state of the application is stored. |
Bank Form |
Action |
The only way to change the state is to dispatch an action an object that describe what happened. |
Bank staff |
Reducer |
To specify how the state tree is updated based on given action |