| 1 | import { useEffect, useRef } from 'react'; |
| 2 | |
| 3 | class Pixel { |
| 4 | constructor(canvas, context, x, y, color, speed, delay) { |
| 5 | this.width = canvas.width; |
| 6 | this.height = canvas.height; |
nothing calls this directly
no outgoing calls
no test coverage detected