We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32b6907 commit 037890cCopy full SHA for 037890c
1 file changed
CHANGELOG.md
@@ -35,6 +35,16 @@ changes in this release - see below for details.
35
});
36
```
37
38
+- Support using function element form for `DragOverlay` children. This enables
39
+ referencing the related `Draggable` directly without the need to track
40
+ separately. For example:
41
+
42
+ ```jsx
43
+ <DragOverlay>
44
+ {(draggable) => <div>Draggable {draggable.id}</div>}
45
+ </DragOverlay>
46
+ ```
47
48
### Changed
49
50
- **Breaking Change** Refactor core to lean more into reactivity.
0 commit comments