diff -r 3c9d3c8f41d1 -r 3b20e2b584fe client/src/reducers/index.js --- a/client/src/reducers/index.js Thu Jun 15 17:18:22 2017 +0200 +++ b/client/src/reducers/index.js Fri Jun 16 18:36:39 2017 +0200 @@ -3,13 +3,16 @@ import notes from './notesReducer'; import { currentSession, sessions } from './sessionsReducer'; -import { isAuthenticated } from './authReducer'; +import { isAuthenticated, currentUser, login, token } from './authReducer'; const rootReducer = combineReducers({ currentSession, sessions, notes, isAuthenticated, + currentUser, + login, + token, router: routerReducer, });