Rename themes -> flavours ? ?
This commit is contained in:
@ -0,0 +1,16 @@
|
||||
import { connect } from 'react-redux';
|
||||
import { closeModal } from 'flavours/glitch/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);
|
Reference in New Issue
Block a user