ReactPropsProps Passing Data to a Component Passing data to components is possible with props const Hello = (props) => { return ( <div> <p>Hello {props.name}</p> </div> ) } Prop DrillingJSXState