Get the redux-reducer for integration with the store. Variable, not a function.
// Example:// In the file where the wrapper is defined:// ...exportconstreducer=exampleWrapper.reducer;//... then in your reducer-collection ...import { reducer as example } from"./Example";exportdefaultcombineReducers({ example });//... and finally in the store:import globalReducers from"./global-reducer-collection";constcreateStoreWithMiddleware=compose(applyMiddleware(logger, sagaMiddleware))(createStore);conststore=createStoreWithMiddleware(globalReducers, {});