()
| 200 | |
| 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'); |
nothing calls this directly
no test coverage detected