diff --git a/examples/with-redux-code-splitting/containers/about.js b/examples/with-redux-code-splitting/containers/about.js index 5813b640..3d174cf0 100644 --- a/examples/with-redux-code-splitting/containers/about.js +++ b/examples/with-redux-code-splitting/containers/about.js @@ -8,7 +8,7 @@ const DEFAULT_STATE = {version: 1} const {actionCreator, getState: getAboutState} = namespaceConfig('about', DEFAULT_STATE) -const bumpVersion = actionCreator(function bumpVersion (state, increment) { +const bumpVersion = actionCreator('bumpVersion', function(state, increment) { return {...state, version: state.version + increment} })