diff --git a/examples/with-redux-code-splitting/containers/about.js b/examples/with-redux-code-splitting/containers/about.js index 3d174cf0..d03effbb 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('bumpVersion', function(state, increment) { +const bumpVersion = actionCreator('bumpVersion', function (state, increment) { return {...state, version: state.version + increment} })