mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-12 03:54:13 +00:00
c9676cac62
* (Reapplied) Upgrade to Webpack 4 * remove yarn.lock from gitignore * add yarn.lock * custom hashing for css and client bundle filenames * add hash-files dep * update deps * add .wwp-cache to .gitignore * use latest git hash as filename hash * remove unused hash-files dep * update favicon plugin * remove yarn.lock
16 lines
545 B
TypeScript
16 lines
545 B
TypeScript
import { combineReducers } from 'redux';
|
|
import { customNodes } from './customNodes';
|
|
import { staticNodes } from './staticNodes';
|
|
import { selectedNode } from './selectedNode';
|
|
import { CustomNodesState, StaticNodesState, SelectedNodeState } from './types';
|
|
|
|
interface State {
|
|
customNodes: CustomNodesState;
|
|
staticNodes: StaticNodesState;
|
|
selectedNode: SelectedNodeState;
|
|
}
|
|
|
|
const nodes = combineReducers<State>({ customNodes, staticNodes, selectedNode });
|
|
|
|
export { State, nodes, CustomNodesState, StaticNodesState, SelectedNodeState };
|