mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-27 12:56:01 +01:00
18 lines
570 B
JavaScript
18 lines
570 B
JavaScript
import { connect } from 'react-redux';
|
|
import { compose } from 'redux';
|
|
import withModalProps from '../../../../helpers/higher-order-components/with-modal-props';
|
|
import { removeNetworkConfiguration } from '../../../../store/actions';
|
|
import ConfirmDeleteNetwork from './confirm-delete-network.component';
|
|
|
|
const mapDispatchToProps = (dispatch) => {
|
|
return {
|
|
removeNetworkConfiguration: (target) =>
|
|
dispatch(removeNetworkConfiguration(target)),
|
|
};
|
|
};
|
|
|
|
export default compose(
|
|
withModalProps,
|
|
connect(null, mapDispatchToProps),
|
|
)(ConfirmDeleteNetwork);
|