You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
452 B
13 lines
452 B
2 years ago
|
import { connect } from 'react-redux';
|
||
|
import { isUserTouching } from 'flavours/glitch/is_mobile';
|
||
|
import { openModal, closeModal } from 'flavours/glitch/actions/modal';
|
||
|
import Dropdown from '../components/dropdown';
|
||
|
|
||
|
const mapDispatchToProps = dispatch => ({
|
||
|
isUserTouching,
|
||
|
onModalOpen: props => dispatch(openModal('ACTIONS', props)),
|
||
|
onModalClose: () => dispatch(closeModal()),
|
||
|
});
|
||
|
|
||
|
export default connect(null, mapDispatchToProps)(Dropdown);
|