Info | ||
---|---|---|
| ||
In React, function components are a simpler way to write components that only contain a |
The square class can be converted to:
function Square(props) { return ( <button className="square" onClick={props.onClick}> {props.value} </button> ); }
Info | ||
---|---|---|
| ||
In React, function components are a simpler way to write components that only contain a |
The square class can be converted to:
function Square(props) { return ( <button className="square" onClick={props.onClick}> {props.value} </button> ); }