client/src/reducers/index.js
changeset 12 48ddaa42b810
parent 3 3b5d37d84cfe
child 44 3b20e2b584fe
--- a/client/src/reducers/index.js	Wed May 31 17:28:12 2017 +0200
+++ b/client/src/reducers/index.js	Wed May 31 17:51:54 2017 +0200
@@ -1,9 +1,16 @@
-import {combineReducers} from 'redux-immutable';
+import { combineReducers } from 'redux-immutable';
+import { routerReducer } from 'react-router-redux';
 
 import notes from './notesReducer';
+import { currentSession, sessions } from './sessionsReducer';
+import { isAuthenticated } from './authReducer';
 
 const rootReducer = combineReducers({
-  notes
+  currentSession,
+  sessions,
+  notes,
+  isAuthenticated,
+  router: routerReducer,
 });
 
 export default rootReducer;