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