Skip to content

Instantly share code, notes, and snippets.

@ShuvoHabib
Created October 27, 2018 08:26
Show Gist options
  • Save ShuvoHabib/3eb8de644f68fc8c85109b6c8dbcc688 to your computer and use it in GitHub Desktop.
Save ShuvoHabib/3eb8de644f68fc8c85109b6c8dbcc688 to your computer and use it in GitHub Desktop.
Counter React Hook
import { useState } from 'react';
function Example() {
// Declare a new state variable, which we'll call "count"
const [count, setCount] = useState(0);
return (
<div>
<p>You clicked {count} times</p>
<button onClick={() => setCount(count + 1)}>
Click me
</button>
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment