--- 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,
});