()
| 6 | } |
| 7 | |
| 8 | export default function App() { |
| 9 | const [count, setCount] = useState(0) |
| 10 | |
| 11 | return ( |
| 12 | <CounterButton |
| 13 | title={`Click HERE to increment: ${count}`} |
| 14 | onIncrement={() => setCount(count + 1)} |
| 15 | /> |
| 16 | ) |
nothing calls this directly
no outgoing calls
no test coverage detected