Skip to content

Instantly share code, notes, and snippets.

@Reine0017
Created April 28, 2020 12:40
Show Gist options
  • Save Reine0017/9277b2bd94e438ccb762bc46a268e7ca to your computer and use it in GitHub Desktop.
Save Reine0017/9277b2bd94e438ccb762bc46a268e7ca to your computer and use it in GitHub Desktop.
React "Hello World Counter" Example.js
import React, { 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>
);
}
export default Example;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment