Skip to content

Instantly share code, notes, and snippets.

@rivasdiaz
Created November 19, 2017 08:18
Show Gist options
  • Save rivasdiaz/704a351b25ea2bdf12de20bc34b284ee to your computer and use it in GitHub Desktop.
Save rivasdiaz/704a351b25ea2bdf12de20bc34b284ee to your computer and use it in GitHub Desktop.
React function to create a button with some properties
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