2021-07-19 23:22:39 +02:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { doHideModal } from 'redux/actions/app';
|
|
|
|
import ModalRemoveComment from './view';
|
|
|
|
import { doCommentAbandon } from 'redux/actions/comments';
|
|
|
|
|
2021-11-08 18:22:40 +01:00
|
|
|
const perform = {
|
|
|
|
doHideModal,
|
|
|
|
doCommentAbandon,
|
|
|
|
};
|
2021-07-19 23:22:39 +02:00
|
|
|
|
|
|
|
export default connect(null, perform)(ModalRemoveComment);
|