Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save GuillaumeDaviid/bf3fb454b9b6b56d6666f9e792ef878e to your computer and use it in GitHub Desktop.

Select an option

Save GuillaumeDaviid/bf3fb454b9b6b56d6666f9e792ef878e to your computer and use it in GitHub Desktop.
react composant : example 3
function Example() {
const [count, setCount] = useState(0);
return (
<div>
<p>count: {count}</p>
<button onClick={() => setCount(count + 1)}>Click</button>
</div>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment