accelerator-core
Version:
[](https://travis-ci.org/furkleindustries/accelerator-core)
22 lines (20 loc) • 459 B
text/typescript
import {
historyReducer,
} from './historyReducer';
import {
IAction,
} from '../actions/IAction';
import {
IState,
} from '../state/IState';
import {
combineReducers,
Reducer,
} from 'redux';
import {
storyRequiresFullRerenderReducer,
} from './storyRequiresFullRerenderReducer';
export const rootReducer: Reducer<IState, IAction> = combineReducers({
history: historyReducer,
storyRequiresFullRerender: storyRequiresFullRerenderReducer,
});