()
| 6 | |
| 7 | |
| 8 | function App() { |
| 9 | const [value, setValue] = useState(0) |
| 10 | |
| 11 | return ( |
| 12 | <div className="App"> |
| 13 | <Navbar logoText="CodeWithCWHHarry"/> |
| 14 | <div className='value'> {value}</div> |
| 15 | <button onClick={()=>{setValue(value + 1)}}>Click me</button> |
| 16 | <Footer/> |
| 17 | </div> |
| 18 | ); |
| 19 | } |
| 20 | |
| 21 | export default App; |
nothing calls this directly
no outgoing calls
no test coverage detected