2017-12-21 22:08:54 +01:00
|
|
|
import { connect } from 'react-redux';
|
2018-04-19 18:51:18 +02:00
|
|
|
import { doHideNotification } from 'lbry-redux';
|
2017-12-21 22:08:54 +01:00
|
|
|
import ModalTransactionFailed from './view';
|
2017-08-31 06:15:13 +02:00
|
|
|
|
|
|
|
const select = state => ({});
|
|
|
|
|
|
|
|
const perform = dispatch => ({
|
2018-04-19 18:51:18 +02:00
|
|
|
closeModal: () => dispatch(doHideNotification()),
|
2017-08-31 06:15:13 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(select, perform)(ModalTransactionFailed);
|