import TestCase from '../../TestCase'; import DragBox from './drag-box'; const React = window.React; class Drag extends React.Component { render() { return (
  • Drag the circle below with any pointer tool
  • While dragging, the circle must have turn blue to indicate that a pointer capture was received.
    ); } } export default Drag;