| 4 | import { motion } from 'framer-motion' |
| 5 | |
| 6 | interface Star { |
| 7 | x: number |
| 8 | y: number |
| 9 | size: number |
| 10 | } |
| 11 | |
| 12 | const ConstellationLoader: React.FC = () => { |
| 13 | const [stars, setStars] = useState<Star[]>([]) |
nothing calls this directly
no outgoing calls
no test coverage detected