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.
actionCreators
1 parent b0179d6 commit b546529Copy full SHA for b546529
examples/todomvc/store/configureStore.js
@@ -1,10 +1,11 @@
1
import { createStore } from 'redux';
2
import devTools from 'remote-redux-devtools';
3
import rootReducer from '../reducers';
4
+import * as actionCreators from '../actions/todos';
5
6
export default function configureStore(initialState) {
7
const store = createStore(rootReducer, initialState, devTools({
- realtime: true
8
+ realtime: true, actionCreators
9
}));
10
11
if (module.hot) {
0 commit comments