Im using React Draggable
I added a resize handle to be able to resize the object, but the event fails to pick u on the resizing, instead it keeps moving the object.
I force the show of the resize handle this
resize:both;
overflow:auto;
This is an example of the object.
<Draggable onDrag={this.handleDrag} bounds="body" {...dragHandlers}>
<div
id='bed-wall-1'
className="bed-wall"
style={{width:'10px', height:'230px', position: 'absolute', top: '250px', left: '50px'}}
>
</div>
</Draggable>
Unless there is a way to do this for Draggable Im not sure how to achieve this.