Daniel Ternyak 7930ab6611
Revert "Upgrade to Webpack 4 (#1386)" (#1406)
This reverts commit d19c4f44e6b74fee412e69019cb2c98c876e1c8e.
2018-03-28 14:34:29 -05:00

16 lines
455 B
TypeScript

import { customNetworks, State as CustomNetworksState } from './customNetworks';
import { staticNetworks, State as StaticNetworksState } from './staticNetworks';
import { combineReducers } from 'redux';
interface State {
customNetworks: CustomNetworksState;
staticNetworks: StaticNetworksState;
}
const networks = combineReducers<State>({
customNetworks,
staticNetworks
});
export { State, networks, StaticNetworksState, CustomNetworksState };