| 4 | import { motion, useAnimation } from 'framer-motion' |
| 5 | |
| 6 | interface Star { |
| 7 | id: number |
| 8 | x: number |
| 9 | y: number |
| 10 | size: number |
| 11 | speed: number |
| 12 | } |
| 13 | |
| 14 | const StarWarsButton: React.FC = () => { |
| 15 | const buttonRef = useRef<HTMLButtonElement>(null) |
nothing calls this directly
no outgoing calls
no test coverage detected