August 2017
Beginner
374 pages
10h 41m
English
Let's dispatch some actions and see what happens.
Add the following code at the end of the src/index.js file:
store.dispatch(createPost('dan', 'hello world'))store.dispatch(createPost('des', 'second post'))
These two posts will be inserted into the Redux store and rendered by our render() function.
Read now
Unlock full access