如何在使用 React 停止拖动时恢复 Draggable 组件的位置

How to revert the Draggable compoent's position when drag stops using React

我有一个 Draggable 组件,里面有一个容器。 我希望 Draggable 的位置在拖动停止时重置 (onStop)。 这是我的 Draggable 的属性:

<Draggable
    axis="x"
    bounds={{top: 0, bottom: 0, left: -75, right: 0}}
    onStop={//what to do here}
>

我该怎么做?

所以,我研究了一下,你可以使用 position={{x: 0, y: 0}} 来让它工作。