From 37e8c0817e9bc05da39b463db0996060ae88da49 Mon Sep 17 00:00:00 2001 From: Daniel Ternyak Date: Fri, 14 Apr 2017 01:24:16 -0500 Subject: [PATCH] add config reducers to RootReducer/CombineReducer --- common/reducers/index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/reducers/index.js b/common/reducers/index.js index aa376119..6284e055 100644 --- a/common/reducers/index.js +++ b/common/reducers/index.js @@ -3,14 +3,17 @@ import * as inbox from './inbox' import * as auth from './auth' import * as loginCR from './loginCR' import * as dashboard from './dashboard' +import * as config from './config' import {combineReducers} from 'redux'; import {routerReducer} from 'react-router-redux' + export default combineReducers({ ...layout, ...inbox, ...auth, ...dashboard, ...loginCR, + ...config, routing: routerReducer })