()
| 8 | const [isDragging, setIsDragging] = useState(false); |
| 9 | |
| 10 | const handleMouseDown = () => { |
| 11 | setIsDragging(true); |
| 12 | }; |
| 13 | |
| 14 | const handleMouseMove = (e: React.MouseEvent) => { |
| 15 | if (!isDragging) return; |
nothing calls this directly
no outgoing calls
no test coverage detected