You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<divclassName="box">I can only be moved 100px in any direction.</div>
117
132
</Draggable>
133
+
<Draggable{...dragHandlers}>
134
+
<divclassName="box drop-target"onMouseEnter={this.onDropAreaMouseEnter}onMouseLeave={this.onDropAreaMouseLeave}>I can detect drops from the next box.</div>
135
+
</Draggable>
136
+
<Draggable{...dragHandlers}onStop={this.onDrop}>
137
+
<divclassName={`box ${this.state.activeDrags ? "no-pointer-events" : ""}`}>I can be dropped onto another box.</div>
0 commit comments