This repository has been archived on 2024-07-31. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/app/assets/javascripts/components/reducers/index.jsx

13 lines
308 B
React
Raw Normal View History

import { combineReducers } from 'redux-immutable';
import timelines from './timelines';
import meta from './meta';
import compose from './compose';
2016-09-01 09:13:02 -04:00
import follow from './follow';
export default combineReducers({
timelines,
meta,
2016-09-01 09:13:02 -04:00
compose,
follow
});