2016-08-24 16:56:44 +01:00
|
|
|
import { combineReducers } from 'redux-immutable';
|
2016-08-31 15:15:12 +01:00
|
|
|
import timelines from './timelines';
|
2016-08-26 18:12:19 +01:00
|
|
|
import meta from './meta';
|
2016-08-31 15:15:12 +01:00
|
|
|
import compose from './compose';
|
2016-09-01 14:13:02 +01:00
|
|
|
import follow from './follow';
|
2016-08-24 16:56:44 +01:00
|
|
|
|
|
|
|
export default combineReducers({
|
2016-08-31 15:15:12 +01:00
|
|
|
timelines,
|
|
|
|
meta,
|
2016-09-01 14:13:02 +01:00
|
|
|
compose,
|
|
|
|
follow
|
2016-08-24 16:56:44 +01:00
|
|
|
});
|