Skip to content
Fetching contributors…
Cannot retrieve contributors at this time
13 lines (10 sloc) 282 Bytes
import { combineReducers } from 'redux';
import { reducer as app } from './redux';
import { reducer as hikesApp } from './routes/Hikes/redux';
export default function createReducer(sideReducers = {}) {
return combineReducers({
...sideReducers,
app,
hikesApp
});
}
Something went wrong with that request. Please try again.