lbry-desktop/src/renderer/modal/modalRevokeClaim/index.js

15 lines
468 B
JavaScript
Raw Normal View History

import { connect } from 'react-redux';
import { doHideNotification, doAbandonClaim, selectTransactionItems } from 'lbry-redux';
import ModalRevokeClaim from './view';
2017-10-27 21:42:54 +02:00
2017-11-01 21:23:30 +01:00
const select = state => ({
transactionItems: selectTransactionItems(state),
});
2017-10-27 21:42:54 +02:00
const perform = dispatch => ({
closeModal: () => dispatch(doHideNotification()),
2017-11-01 21:23:30 +01:00
abandonClaim: (txid, nout) => dispatch(doAbandonClaim(txid, nout)),
2017-10-27 21:42:54 +02:00
});
2017-11-01 21:23:30 +01:00
export default connect(select, perform)(ModalRevokeClaim);