UNPKG

accelerator-core

Version:

[![Build Status](https://travis-ci.org/furkleindustries/accelerator-core.svg?branch=master)](https://travis-ci.org/furkleindustries/accelerator-core)

22 lines (20 loc) 459 B
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, });