import {BallPiece} from "../editor/BallPiece"; import Draggable from "react-draggable"; import {useRef} from "react"; export interface BallActionProps { onDrop: (el: HTMLElement) => void } export default function BallAction({onDrop}: BallActionProps) { const ref = useRef(null) return ( onDrop(ref.current!)} nodeRef={ref} >
) }