| 4 | import { motion } from 'framer-motion'; |
| 5 | |
| 6 | interface Position { |
| 7 | x: number; |
| 8 | y: number; |
| 9 | } |
| 10 | |
| 11 | export default function MagneticButton() { |
| 12 | const ref = useRef<HTMLButtonElement>(null); |
nothing calls this directly
no outgoing calls
no test coverage detected