| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | 12x | import { combineReducers } from 'redux';
import {
ActionTypes,
AuthorsContainerSorts,
CommitsContainerSorts,
FilesContainerSorts,
CollapsibleSidePanelGroups,
} from 'app/actions/ActionTypes';
import * as commitReducers from './commits';
import * as diffReducers from './diff';
import * as dateReducers from './dates';
import * as uiReducers from './ui';
const rootReducer = combineReducers({
...commitReducers,
...diffReducers,
...dateReducers,
...uiReducers,
});
export default rootReducer;
|