()
| 4 | const [hover, setHover] = useState<boolean>(false); |
| 5 | const ref: any = useRef<T | null>(null); |
| 6 | const handleMouseOver = function () { |
| 7 | setHover(true); |
| 8 | }; |
| 9 | const handleMouseOut = function () { |
| 10 | setHover(false); |
| 11 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected