()
| 4 | const [count, setCount] = useState(0); |
| 5 | |
| 6 | const handleClick = () => { |
| 7 | setCount(count + 1); |
| 8 | setTimeout(() => { |
| 9 | alert(count); |
| 10 | }, 3000); |
| 11 | }; |
| 12 | |
| 13 | return ( |
| 14 | <div> |
nothing calls this directly
no outgoing calls
no test coverage detected