2016-08-25 01:56:44 +10:00
|
|
|
import { combineReducers } from 'redux-immutable';
|
2016-09-01 00:15:12 +10:00
|
|
|
import timelines from './timelines';
|
2016-08-27 03:12:19 +10:00
|
|
|
import meta from './meta';
|
2016-09-01 00:15:12 +10:00
|
|
|
import compose from './compose';
|
2016-09-01 23:13:02 +10:00
|
|
|
import follow from './follow';
|
2016-08-25 01:56:44 +10:00
|
|
|
|
|
|
|
export default combineReducers({
|
2016-09-01 00:15:12 +10:00
|
|
|
timelines,
|
|
|
|
meta,
|
2016-09-01 23:13:02 +10:00
|
|
|
compose,
|
|
|
|
follow
|
2016-08-25 01:56:44 +10:00
|
|
|
});
|