()
| 18 | } |
| 19 | |
| 20 | function StatefulCounter() { |
| 21 | const [count, setCount] = useState(0); |
| 22 | const handleClick = () => setCount(count + 1); |
| 23 | return <button onClick={handleClick}>Count {count}</button>; |
| 24 | } |
| 25 | |
| 26 | createRoot(createContainer()).render(<StatefulCounter />); |
nothing calls this directly
no test coverage detected