lbry-desktop/src/renderer/modal/modalTransactionFailed/index.js
2018-10-29 13:25:22 -04:00

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);