--- 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;