78c27b4601
This reverts commit 24100fac06
.
14 lines
321 B
JavaScript
14 lines
321 B
JavaScript
import { connect } from 'react-redux';
|
|
import { doHideNotification } from 'lbry-redux';
|
|
import ModalTransactionFailed from './view';
|
|
|
|
const select = () => ({});
|
|
|
|
const perform = dispatch => ({
|
|
closeModal: () => dispatch(doHideNotification()),
|
|
});
|
|
|
|
export default connect(
|
|
select,
|
|
perform
|
|
)(ModalTransactionFailed);
|