Is there a plugin to achieve drag and drop like this in reactjs? I tried with react-rnd and react-beautiful-dnd.
Asked
Active
Viewed 231 times
2

Rahul CS
- 61
- 3
1 Answers
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>

Manusha Chethiyawardhana
- 15
- 1
- 8