Skip to content

Instantly share code, notes, and snippets.

@mehanalavimajd
Created July 18, 2022 07:47
Show Gist options
  • Save mehanalavimajd/08a3eb4f3be7cdd03393efba11f6dff3 to your computer and use it in GitHub Desktop.
Save mehanalavimajd/08a3eb4f3be7cdd03393efba11f6dff3 to your computer and use it in GitHub Desktop.
function App() {
const [b, setB] = useState(0);
return (
<div className="App">
<div>
{b}
<button onClick={() => setB(b+1)}>
</button>
</div>
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment