2e112e2406
* Add semi to ESLint rules * Add padded-blocks to ESLint rules * Add comma-dangle to ESLint rules * add config/webpack and storyboard * add streaming/ * yarn test:lint -- --fix
16 lines
429 B
JavaScript
16 lines
429 B
JavaScript
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);
|