spee.ch/react/reducers/index.js

9 lines
227 B
JavaScript
Raw Normal View History

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