1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-23 22:16:57 +00:00
mastodon/app/javascript/flavours/glitch/features/ui/containers/modal_container.js

17 lines
436 B
JavaScript
Raw Normal View History

import { connect } from 'react-redux';
2017-12-03 23:26:40 -08:00
import { closeModal } from 'flavours/glitch/actions/modal';
2017-04-01 22:11:28 +02:00
import ModalRoot from '../components/modal_root';
2016-10-24 18:07:40 +02:00
const mapStateToProps = state => ({
2017-04-01 22:11:28 +02:00
type: state.get('modal').modalType,
props: state.get('modal').modalProps,
2016-10-24 18:07:40 +02:00
});
const mapDispatchToProps = dispatch => ({
2017-04-01 22:11:28 +02:00
onClose () {
2016-10-24 18:07:40 +02:00
dispatch(closeModal());
},
});
2017-04-01 22:11:28 +02:00
export default connect(mapStateToProps, mapDispatchToProps)(ModalRoot);