Skip to content

Commit

Permalink
Example with actionCreators parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
zalmoxisus committed Aug 1, 2016
1 parent b0179d6 commit b546529
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion examples/todomvc/store/configureStore.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import { createStore } from 'redux';
import devTools from 'remote-redux-devtools';
import rootReducer from '../reducers';
import * as actionCreators from '../actions/todos';

export default function configureStore(initialState) {
const store = createStore(rootReducer, initialState, devTools({
realtime: true
realtime: true, actionCreators
}));

if (module.hot) {
Expand Down

0 comments on commit b546529

Please sign in to comment.