UNPKG

@6thquake/react-material

Version:

React components that implement Google's Material Design.

27 lines (17 loc) 549 B
/** * @ignore - do not document. */ import React, { Component } from 'react'; class DandDWrapper extends Component { constructor(props) { super(props); this.beginDrag = (props, monitor, component) => {}; this.endDrag = (props, monitor, component) => {}; this.canDrag = (props, monitor) => {}; this.isDragging = (props, monitor) => {}; this.drop = (props, monitor, component) => {}; this.hover = (props, monitor, component) => {}; this.canDrop = (props, monitor) => {}; } } export default DandDWrapper;