16 lines
502 B
JavaScript
16 lines
502 B
JavaScript
|
import { connect } from 'react-redux';
|
||
|
import { doHideModal } from 'redux/actions/app';
|
||
|
import { doAbandonClaim, selectTransactionItems } from 'lbry-redux';
|
||
|
import ModalSupportsLiquidate from './view';
|
||
|
|
||
|
const select = state => ({
|
||
|
transactionItems: selectTransactionItems(state),
|
||
|
});
|
||
|
|
||
|
const perform = dispatch => ({
|
||
|
closeModal: () => dispatch(doHideModal()),
|
||
|
abandonClaim: (txid, nout) => dispatch(doAbandonClaim(txid, nout)),
|
||
|
});
|
||
|
|
||
|
export default connect(select, perform)(ModalSupportsLiquidate);
|