You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
483 B

  1. import { combineReducers } from 'redux-immutable';
  2. import timelines from './timelines';
  3. import meta from './meta';
  4. import compose from './compose';
  5. import follow from './follow';
  6. import notifications from './notifications';
  7. import { loadingBarReducer } from 'react-redux-loading-bar';
  8. export default combineReducers({
  9. timelines,
  10. meta,
  11. compose,
  12. follow,
  13. notifications,
  14. loadingBar: loadingBarReducer,
  15. });