14 lines
		
	
	
	
		
			525 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			525 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import { connect } from 'react-redux';
 | |
| 
 | |
| import { openModal, closeModal } from 'flavours/glitch/actions/modal';
 | |
| import { isUserTouching } from 'flavours/glitch/is_mobile';
 | |
| 
 | |
| import Dropdown from '../components/dropdown';
 | |
| 
 | |
| const mapDispatchToProps = dispatch => ({
 | |
|   isUserTouching,
 | |
|   onModalOpen: props => dispatch(openModal({ modalType: 'ACTIONS', modalProps: props })),
 | |
|   onModalClose: () => dispatch(closeModal({ modalType: undefined, ignoreFocus: false })),
 | |
| });
 | |
| 
 | |
| export default connect(null, mapDispatchToProps)(Dropdown);
 |