| 4 | import { motion } from 'framer-motion' |
| 5 | |
| 6 | interface ParticleProps { |
| 7 | id: number |
| 8 | x: number |
| 9 | y: number |
| 10 | size: number |
| 11 | } |
| 12 | |
| 13 | const ParticleSwarmLoader = () => { |
| 14 | const [particles, setParticles] = useState<ParticleProps[]>([]) |
nothing calls this directly
no outgoing calls
no test coverage detected