Skip to content

Instantly share code, notes, and snippets.

@ruucm-working
Last active May 31, 2019 23:48
Show Gist options
  • Save ruucm-working/24366cdec5deb1722ceee37004aa19d4 to your computer and use it in GitHub Desktop.
Save ruucm-working/24366cdec5deb1722ceee37004aa19d4 to your computer and use it in GitHub Desktop.
import React, {
useState,
} from 'react'
function Example() {
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