ee9f63a161
bugfix wip flow fix cleaning clean
17 lines
588 B
JavaScript
17 lines
588 B
JavaScript
import { connect } from 'react-redux';
|
|
import { selectModal } from 'redux/selectors/app';
|
|
import { doOpenModal, doHideModal } from 'redux/actions/app';
|
|
import { selectError } from 'redux/selectors/notifications'; // RENAME THIS 'selectNotificationError'
|
|
import ModalRouter from './view';
|
|
|
|
const select = (state, props) => ({
|
|
modal: selectModal(state),
|
|
error: selectError(state),
|
|
});
|
|
|
|
const perform = (dispatch) => ({
|
|
openModal: (props) => dispatch(doOpenModal(props)),
|
|
hideModal: (props) => dispatch(doHideModal(props)),
|
|
});
|
|
|
|
export default connect(select, perform)(ModalRouter);
|