lbry-desktop/ui/modal/modalCommentAcknowledgement/index.js
2019-11-14 15:22:45 -05:00

13 lines
294 B
JavaScript

import { connect } from 'react-redux';
import { doHideModal } from 'redux/actions/app';
import ModalCommentAcknowledgement from './view';
const perform = dispatch => ({
closeModal: () => dispatch(doHideModal()),
});
export default connect(
null,
perform
)(ModalCommentAcknowledgement);