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.

12 lines
308 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. export default combineReducers({
  7. timelines,
  8. meta,
  9. compose,
  10. follow
  11. });