@git-temporal/git-temporal-react
Version:
<!-- START doctoc generated TOC please keep comment here to allow auto update --> <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
16 lines (12 loc) • 352 B
text/typescript
import { combineReducers } from 'redux';
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;