Skip to content

Instantly share code, notes, and snippets.

@ingesolvoll
Last active January 9, 2017 23:14
Show Gist options
  • Save ingesolvoll/a2b66ab0a0e648f475f18d6e8ed9f882 to your computer and use it in GitHub Desktop.
Save ingesolvoll/a2b66ab0a0e648f475f18d6e8ed9f882 to your computer and use it in GitHub Desktop.
function Square(props) {
return (
<button className="square" onClick={() => props.onClick()}>
{props.value}
</button>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment