spee.ch/react/reducers/index.js

9 lines
227 B
JavaScript
Raw Normal View History

2018-01-18 18:33:26 +01:00
import { combineReducers } from 'redux';
import PublishReducer from 'reducers/publish';
import ChannelReducer from 'reducers/channel';
2018-01-09 02:06:31 +01:00
2018-01-18 18:33:26 +01:00
export default combineReducers({
channel: ChannelReducer,
publish: PublishReducer,
});