import React from "react"; import { useDroppable } from "@dnd-kit/core"; function Droppable(props: any) { const { isOver, setNodeRef } = useDroppable({ id: "droppable", }); const style = { color: isOver ? "green" : undefined, }; return (
{props.children}
); } export default Droppable;