()
| 158 | function CounterButton() { |
| 159 | const [count, setCount] = useState(0); |
| 160 | const increment = () => setCount(count => count + 1); |
| 161 | return <button onClick={increment}>{count}</button>; |
| 162 | } |
| 163 |
no outgoing calls
no test coverage detected
searching dependent graphs…