Skip to content

Instantly share code, notes, and snippets.

@chrisotto6
Created January 17, 2019 02:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chrisotto6/c90230fa62b2c49519513ca3d3076f96 to your computer and use it in GitHub Desktop.
Save chrisotto6/c90230fa62b2c49519513ca3d3076f96 to your computer and use it in GitHub Desktop.
function Square(props: any) {
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