Skip to content

Instantly share code, notes, and snippets.

@jsalonen
Last active February 6, 2019 15:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jsalonen/933f5f5c0873efa068c75fdf06c6f843 to your computer and use it in GitHub Desktop.
Save jsalonen/933f5f5c0873efa068c75fdf06c6f843 to your computer and use it in GitHub Desktop.
import React, { useState } from 'react';
function Counter() {
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