11 lines
349 B
TypeScript
11 lines
349 B
TypeScript
import { combineReducers } from 'redux';
|
|
|
|
import { customNetworksReducer } from './custom/reducer';
|
|
import { staticNetworksReducer } from './static/reducer';
|
|
import { NetworksState } from './types';
|
|
|
|
export const networksReducer = combineReducers<NetworksState>({
|
|
customNetworks: customNetworksReducer,
|
|
staticNetworks: staticNetworksReducer
|
|
});
|