mirror of
https://github.com/zoriya/flood.git
synced 2025-12-20 22:25:16 +00:00
14 lines
249 B
JavaScript
14 lines
249 B
JavaScript
import {combineReducers} from 'redux';
|
|
|
|
import client from './clientReducer';
|
|
import torrents from './torrentsReducer';
|
|
import ui from './uiReducer';
|
|
|
|
const rootReducer = combineReducers({
|
|
client,
|
|
torrents,
|
|
ui
|
|
});
|
|
|
|
export default rootReducer;
|