Last active
April 4, 2021 17:01
-
-
Save myogeshchavan97/46ff174c00efa93b51d57252fbfc6964 to your computer and use it in GitHub Desktop.
Hooks Based Counter Example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useState } from "react"; | |
import ReactDOM from "react-dom"; | |
const App = () => { | |
const [counter, setCounter] = useState(0); | |
return ( | |
<div> | |
<div> | |
<p>Counter value is: {counter} </p> | |
<button onClick={() => setCounter(counter + 1)}>Increment</button> | |
</div> | |
</div> | |
); | |
}; | |
ReactDOM.render(<App />, document.getElementById("root")); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment