Created
November 19, 2017 08:18
-
-
Save rivasdiaz/704a351b25ea2bdf12de20bc34b284ee to your computer and use it in GitHub Desktop.
React function to create a button with some properties
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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