Use state
import React, { useState } from 'react'; | |
function Counter () { | |
const [count, setCount] = useState(0); | |
return ( | |
<> | |
<span> | |
Count: {count} | |
</span> | |
<button onClick={() => setCount(count + 1)}> | |
Increment | |
</button> | |
</> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment