lbry-desktop/ui/modal/modalWalletReceive/index.js

15 lines
255 B
JavaScript
Raw Normal View History

2019-09-30 23:48:30 +02:00
import { connect } from 'react-redux';
2019-11-22 22:13:00 +01:00
import { doHideModal } from 'redux/actions/app';
2019-09-30 23:48:30 +02:00
import WalletReceive from './view';
const select = state => ({});
2019-11-22 22:13:00 +01:00
const perform = {
doHideModal,
};
2019-09-30 23:48:30 +02:00
export default connect(
select,
perform
)(WalletReceive);