Reputation: 35
I'm trying to build a simple implementation of draggables in react-beautiful-dnd
but apparently my draggables won't move.
Here is my sample code in CodeSandbox:
Upvotes: 1
Views: 928
Reputation: 8561
Just remove style
attribute from child of draggable
(in your case it's Block
component). DnD uses its own style
attribute and you override it. You have to use className
instead of it.
Your example without style
:
https://codesandbox.io/s/using-react-beautiful-dnd-with-hooks-1m4zm
Upvotes: 4