Skip to content

Instantly share code, notes, and snippets.

@subeshb1
Created May 2, 2019 02:31
Show Gist options
  • Save subeshb1/e7a1cff5b4cfc3358be46bdc86cb9936 to your computer and use it in GitHub Desktop.
Save subeshb1/e7a1cff5b4cfc3358be46bdc86cb9936 to your computer and use it in GitHub Desktop.
import React, { useState } from 'react';
function Counter() {
const [count, setCount] = useState(0);
return (
<div>
<p>{count}</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