| 205 | handleAnimation('appear'); |
| 206 | }; |
| 207 | const onBlur = e => { |
| 208 | if (e.currentTarget.contains(e.relatedTarget)) return; |
| 209 | handleAnimation('disappear'); |
| 210 | }; |
| 211 | |
| 212 | useEffect(() => { |
| 213 | initPixels(); |
nothing calls this directly
no test coverage detected