2019-09-30 17:48:30 -04:00
|
|
|
import { connect } from 'react-redux';
|
2019-11-22 16:13:00 -05:00
|
|
|
import { doHideModal } from 'redux/actions/app';
|
2019-09-30 17:48:30 -04:00
|
|
|
import WalletSend from './view';
|
|
|
|
|
|
|
|
const select = state => ({});
|
|
|
|
|
2019-11-22 16:13:00 -05:00
|
|
|
const perform = {
|
|
|
|
doHideModal,
|
|
|
|
};
|
2019-09-30 17:48:30 -04:00
|
|
|
|
|
|
|
export default connect(
|
|
|
|
select,
|
|
|
|
perform
|
|
|
|
)(WalletSend);
|