mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-23 17:47:24 +00:00
11 lines
283 B
JavaScript
11 lines
283 B
JavaScript
import { connect } from 'react-redux';
|
|
import { doHideModal } from 'redux/actions/app';
|
|
import ModalImageUpload from './view';
|
|
|
|
const perform = dispatch => () => ({
|
|
closeModal: () => {
|
|
dispatch(doHideModal());
|
|
},
|
|
});
|
|
|
|
export default connect(null, perform)(ModalImageUpload);
|