2

Is there a plugin to achieve drag and drop like this in reactjs? I tried with react-rnd and react-beautiful-dnd. enter image description here

Rahul CS
  • 61
  • 3

1 Answers1

0

You can use react-draggable. It's a simple component that can be used to make elements draggable, as shown below.

<Draggable>
  <div>Drag Element</div>
</Draggable>