You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
429 B
16 lines
429 B
import { connect } from 'react-redux'; |
|
import { closeModal } from '../../../actions/modal'; |
|
import ModalRoot from '../components/modal_root'; |
|
|
|
const mapStateToProps = state => ({ |
|
type: state.get('modal').modalType, |
|
props: state.get('modal').modalProps, |
|
}); |
|
|
|
const mapDispatchToProps = dispatch => ({ |
|
onClose () { |
|
dispatch(closeModal()); |
|
}, |
|
}); |
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(ModalRoot);
|
|
|