react function as prop code example
Example 1: function component with props
import React from "react"
function Checkbox(props){
return (
)
}
export default Checkbox
Example 2: pass props in react
/* PASSING THE PROPS to the 'Greeting' component */
const expression = 'Happy';
// statement and expression are the props (ie. arguments) we are passing to Greeting component
/* USING THE PROPS in the child component */
class Greeting extends Component {
render() {
return {this.props.statement} I am feeling {this.props.expression} today!
;
}
}