()
| 255 | |
| 256 | const onMouseEnter = () => handleAnimation('appear'); |
| 257 | const onMouseLeave = () => handleAnimation('disappear'); |
| 258 | const onFocus: React.FocusEventHandler<HTMLDivElement> = e => { |
| 259 | if (e.currentTarget.contains(e.relatedTarget)) return; |
| 260 | handleAnimation('appear'); |
nothing calls this directly
no test coverage detected