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

12 lines
318 B
JavaScript
Raw Normal View History

import { connect } from 'react-redux';
2018-04-19 18:51:18 +02:00
import { doHideNotification } from 'lbry-redux';
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);