We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 70fda76 + 5c2ce3f commit c589d09Copy full SHA for c589d09
docs/Reference/API.md
@@ -65,7 +65,7 @@ function todos(state = [], action) {
65
}
66
67
let store = createStore(todos, ['Use Redux']);
68
-store.dispatch({ type: 'ADD_TODO', text: 'Read the docs');
+store.dispatch({ type: 'ADD_TODO', text: 'Read the docs' });
69
70
console.log(store.getState());
71
// ['Use Redux', 'Read the docs']
0 commit comments