Releases: TriPSs/react-esc
Releases · TriPSs/react-esc
v4.0.0-beta.10
Update version
v4.0.0-0
v3.5.0
v3.4.0
v3.2.2
v3.0.0
v2.5.0
v2.4.0
v2.3.0
v1.7.0
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,
}
}