Skip to content

Instantly share code, notes, and snippets.

@ccapndave
Created April 30, 2019 13:03
Show Gist options
  • Save ccapndave/d88e673f30c85efdcfbe4c9fbd547946 to your computer and use it in GitHub Desktop.
Save ccapndave/d88e673f30c85efdcfbe4c9fbd547946 to your computer and use it in GitHub Desktop.
import * as React from 'react';
export function Voter() {
const [ state, setState ] = React.useState(0);
return (
<div>
<button onClick={e => setState(x => x + 1)}>click</button>
Hello there {state}
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment