- 后端
- HTML5
Made with ❤️ by 紫升
通过 useDragLayer 钩子,您可以将一个组件作为拖曳层连接到 DnD 系统中。
import { useDragLayer } from 'react-dnd'function DragLayerComponent(props) {const collectedProps = useDragLayer(monitor => /* Collected Props */)return <div>...</div>}
从收集函数中收集的属性对象。