Skip to content

v1.7.0

Choose a tag to compare

@TriPSs TriPSs released this 21 Apr 12:05
· 5 commits to v1 since this release

You can now load your reducers and AppContainer by placing them in the following location:

store/reducers.js Export a function like this:

export default asyncReducers => combineReducers({
  router,
  ...initialReducers,
  ...asyncReducers,
})

And the AppContainer
containers/AppContainer.js

To enable this add this to your config:

{
  loadFile: {
    reducers    : true,
    AppContainer: true,
  }
}