import React from 'react'; import {useDraggable} from '@dnd-kit/core'; type DraggableProps={ children: React.ReactNode id: number } export function Draggable(props:DraggableProps) { const { attributes, listeners, setNodeRef } = useDraggable({ id: `draggable-${props.id+1}`, data: { child: props.children }, }); return (