UNPKG

@6thquake/react-material

Version:

React components that implement Google's Material Design.

25 lines (17 loc) 466 B
/** * @ignore - do not document. */ import React, { Component } from 'react'; class SourceWrapper extends Component { constructor(...args) { super(...args); this.beginDrag = (props, monitor, component) => {}; this.endDrag = (props, monitor, component) => {}; this.canDrag = (props, monitor) => {}; this.isDragging = (props, monitor) => {}; } componentDidMount() { this.props.register(this); } } export default SourceWrapper;