()
| 4 | import './App.css' |
| 5 | |
| 6 | function App() { |
| 7 | const [count, setCount] = useState(0) |
| 8 | |
| 9 | return ( |
| 10 | <> |
| 11 | <div>The count is {count}</div> |
| 12 | <button onClick={()=>{setCount(count + 1)}}>Update count</button> |
| 13 | </> |
| 14 | ) |
| 15 | } |
| 16 | |
| 17 | export default App |
nothing calls this directly
no outgoing calls
no test coverage detected