index.js 310 B

1234567891011121314151617
  1. import { combineReducers } from 'redux';
  2. import url from './url';
  3. import auth from './auth';
  4. import error from './error';
  5. import loading from './loading';
  6. import settings from './settings';
  7. const rootReducer = combineReducers({
  8. url,
  9. auth,
  10. error,
  11. loading,
  12. settings,
  13. });
  14. export default rootReducer;