mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-03-03 20:20:54 +00:00
* (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
17 lines
463 B
TypeScript
17 lines
463 B
TypeScript
import { combineReducers } from 'redux';
|
|
import { customNetworks } from './customNetworks';
|
|
import { staticNetworks } from './staticNetworks';
|
|
import { StaticNetworksState, CustomNetworksState } from './types';
|
|
|
|
interface State {
|
|
customNetworks: CustomNetworksState;
|
|
staticNetworks: StaticNetworksState;
|
|
}
|
|
|
|
const networks = combineReducers<State>({
|
|
customNetworks,
|
|
staticNetworks
|
|
});
|
|
|
|
export { State, networks, StaticNetworksState, CustomNetworksState };
|