receptor/src/reducers/index.js

9 lines
145 B
JavaScript
Raw Normal View History

2017-08-20 17:57:57 +02:00
import { combineReducers } from 'redux';
import torrents from './torrents';
const root = combineReducers({
torrents
});
export default root;