| author | ymh <ymh.work@gmail.com> |
| Mon, 19 Jun 2017 21:46:21 +0200 | |
| changeset 59 | 1eb52770eefa |
| parent 58 | f16a080e0bc4 |
| child 62 | b2514a9bcd49 |
| permissions | -rw-r--r-- |
import { combineReducers } from 'redux-immutable'; import { routerReducer } from 'react-router-redux'; import notes from './notesReducer'; import { currentSession, sessions } from './sessionsReducer'; import { isAuthenticated, currentUser, login, token } from './authReducer'; const rootReducer = combineReducers({ currentSession, sessions, notes, isAuthenticated, currentUser, login, token, router: routerReducer, }); export default rootReducer;