Guest User

Untitled

a guest
Nov 20th, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. function Square(props) {
  2. return (
  3. <button className="square" onClick={props.onClick}>
  4. {props.value}
  5. </button>
  6. );
  7. }
Add Comment
Please, Sign In to add comment