August 2017
Beginner
374 pages
10h 41m
English
It all starts with a call to store.dispatch(action), which means that some action happened (user action, request resolved, and so on). An action is a plain object that describes what happened:
{ type: 'CREATE_POST', user: 'dan', text: 'hello world' }
Redux checks whether the dispatched action has a type property, then passes it on to the main reducer. This process is called dispatching an action.
Read now
Unlock full access