Skip to content

Instantly share code, notes, and snippets.

@Harshmakadia
Created November 3, 2018 05:41
Show Gist options
  • Save Harshmakadia/ed491f1a8c8cae72852eb10e4f97c18c to your computer and use it in GitHub Desktop.
Save Harshmakadia/ed491f1a8c8cae72852eb10e4f97c18c to your computer and use it in GitHub Desktop.
React Hooks
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