Skip to content

Instantly share code, notes, and snippets.

@krystalcampioni
Created June 8, 2022 14:07
Show Gist options
  • Save krystalcampioni/399e67d233090b7b27e10038ec28e969 to your computer and use it in GitHub Desktop.
Save krystalcampioni/399e67d233090b7b27e10038ec28e969 to your computer and use it in GitHub Desktop.
import React, {useState} from 'react';
export function HelloWorldApp() {
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