import "../../style/ball.css" import BallSvg from "../../assets/icon/ball.svg?react" import {Ball} from "../../tactic/CourtObjects"; export interface CourtBallProps { onMoved: (rect: DOMRect) => void onRemove: () => void ball: Ball } export function BallPiece() { return ( ) }