| author | ymh <ymh.work@gmail.com> |
| Tue, 20 Jun 2017 14:13:15 +0200 | |
| changeset 62 | b2514a9bcd49 |
| parent 59 | 1eb52770eefa |
| child 72 | 7634b424f426 |
| permissions | -rw-r--r-- |
//import { combineReducers } from 'redux-immutable'; import { combineReducers } from 'redux'; import { routerReducer } from 'react-router-redux'; import notes from './notesReducer'; import { sessions } from './sessionsReducer'; import { isAuthenticated, currentUser, login, token } from './authReducer'; const rootReducer = combineReducers({ sessions, notes, isAuthenticated, currentUser, login, token, router: routerReducer, }); export default rootReducer;