- )
}
-export default Droppable
\ No newline at end of file
+
+export default DroppableWrapper
\ No newline at end of file
diff --git a/src/components/utils/droppableDnd.js b/src/components/utils/droppableDnd.js
new file mode 100644
index 0000000..a732888
--- /dev/null
+++ b/src/components/utils/droppableDnd.js
@@ -0,0 +1,20 @@
+import React from 'react'
+import {useDroppable} from '@dnd-kit/core'
+
+function Droppable(props) {
+ const {isOver, setNodeRef} = useDroppable({
+ id: props.id,
+ })
+ const style = {
+ backgroundColor: isOver ? 'green' : '',
+ }
+
+
+ return (
+
+ {props.children}
+
+ )
+}
+
+export default Droppable
\ No newline at end of file
diff --git a/src/components/utils/panzoom.js b/src/components/utils/panzoom.js
index cff9ae4..6fcb320 100644
--- a/src/components/utils/panzoom.js
+++ b/src/components/utils/panzoom.js
@@ -1,4 +1,4 @@
-// This is only for testing purpose, not really meant to be used
+//NOTE: This is only for testing purpose, not really meant to be used
import './polyfills'
import {