| 201 | const onMouseEnter = () => handleAnimation('appear'); |
| 202 | const onMouseLeave = () => handleAnimation('disappear'); |
| 203 | const onFocus = e => { |
| 204 | if (e.currentTarget.contains(e.relatedTarget)) return; |
| 205 | handleAnimation('appear'); |
| 206 | }; |
| 207 | const onBlur = e => { |
| 208 | if (e.currentTarget.contains(e.relatedTarget)) return; |
| 209 | handleAnimation('disappear'); |
nothing calls this directly
no test coverage detected