1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-11-30 07:48:59 +09:00
whippy-edition/app/javascript/mastodon/features/ui/containers/modal_container.js

17 lines
429 B
JavaScript
Raw Normal View History

import { connect } from 'react-redux';
2017-04-02 05:11:28 +09:00
import { closeModal } from '../../../actions/modal';
import ModalRoot from '../components/modal_root';
2016-10-25 01:07:40 +09:00
const mapStateToProps = state => ({
2017-04-02 05:11:28 +09:00
type: state.get('modal').modalType,
props: state.get('modal').modalProps,
2016-10-25 01:07:40 +09:00
});
const mapDispatchToProps = dispatch => ({
2017-04-02 05:11:28 +09:00
onClose () {
2016-10-25 01:07:40 +09:00
dispatch(closeModal());
},
});
2017-04-02 05:11:28 +09:00
export default connect(mapStateToProps, mapDispatchToProps)(ModalRoot);