My code in React with onDrag events works well in desktop, but in mobile versions it doesn't. I don't know if is necessary another option in mobile
This is the code I'm trying (using Chrome devtools for drag&drop as mobile)
const Board = () => {
const onDragHandler = e => {
console.log('This is dragging')
}
return (
<div>
<div
draggable
className="box"
onDragStart={onDragHandler}
></div>
</div>
)
}