pass attributes to react component code example
Example 1: 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!
;
}
}
Example 2: react pass parameter to component
import React, { Component } from 'react'; class App extends Component { render() { return (
); }} class Greeting extends Component { render() { const greeting = 'Welcome to React'; return {greeting}
; }} export default App;