index.js 148 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 import { combineReducers } from 'redux'; import auth from './auth'; const rootReducer = combineReducers({ auth, }); export default rootReducer;