August 2017
Beginner
374 pages
10h 41m
English
In a Redux application, you cannot modify application state directly. The only way to change the state is by dispatching actions:
A Redux action object (to create a new post) could look like this:
{ type: 'CREATE_POST', user: 'dan', text: 'New post' }
Read now
Unlock full access