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