forked from M-Labs/web2019
15 lines
274 B
React
15 lines
274 B
React
|
import {useDroppable} from '@dnd-kit/core';
|
||
|
import React from 'react'
|
||
|
|
||
|
export function Droppable(props) {
|
||
|
const {setNodeRef} = useDroppable({
|
||
|
id: props.id,
|
||
|
});
|
||
|
|
||
|
return (
|
||
|
<div ref={setNodeRef}>
|
||
|
{props.children}
|
||
|
</div>
|
||
|
);
|
||
|
}
|