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

15 lines
321 B
JavaScript
Raw Normal View History

import { connect } from 'react-redux';
import { doHideNotification } from 'lbry-redux';
import ModalTransactionFailed from './view';
2017-08-31 06:15:13 +02:00
const select = () => ({});
2017-08-31 06:15:13 +02:00
const perform = dispatch => ({
closeModal: () => dispatch(doHideNotification()),
2017-08-31 06:15:13 +02:00
});
export default connect(
select,
perform
)(ModalTransactionFailed);