This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2016-08-24 17:56:44 +02:00
|
|
|
import { combineReducers } from 'redux-immutable';
|
2016-08-31 16:15:12 +02:00
|
|
|
import timelines from './timelines';
|
2016-08-26 19:12:19 +02:00
|
|
|
import meta from './meta';
|
2016-08-31 16:15:12 +02:00
|
|
|
import compose from './compose';
|
2016-09-01 15:13:02 +02:00
|
|
|
import follow from './follow';
|
2016-08-24 17:56:44 +02:00
|
|
|
|
|
|
|
export default combineReducers({
|
2016-08-31 16:15:12 +02:00
|
|
|
timelines,
|
|
|
|
meta,
|
2016-09-01 15:13:02 +02:00
|
|
|
compose,
|
|
|
|
follow
|
2016-08-24 17:56:44 +02:00
|
|
|
});
|