'React-sortable-hoc transition doesnt work
I made a sortable list using react-sortable-hoc. My problem is that there is no transition. I tried to use transitionDuration, but it still doesnt work. Here is sandbox with problem: https://codesandbox.io/s/stoic-hill-lulln?file=/src/App.js
Solution 1:[1]
try wrapping your SortableItem in List
const SortableItem = sortableElement(({ value, index }) => (
<li style={{"listStyleType":'none'}}>
<< YOUR CODE HERE>>
</li>
));
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Jay DeGuzman |
