1933997276
Reported issues that weren't completed in de068d36
9 lines
230 B
JavaScript
9 lines
230 B
JavaScript
import { connect } from 'react-redux';
|
|
import { doHideModal } from 'redux/actions/app';
|
|
import ModalPreorderContent from './view';
|
|
|
|
const perform = {
|
|
doHideModal,
|
|
};
|
|
|
|
export default connect(null, perform)(ModalPreorderContent);
|