React Props

PHOTO EMBED

Wed Aug 17 2022 19:31:15 GMT+0000 (Coordinated Universal Time)

Saved by @EMR4HKLMN #jsx

function Car(props) {
  return <h2>I am a { props.brand }!</h2>;
}

function Garage() {
  return (
    <>
      <h1>Who lives in my garage?</h1>
      <Car brand="Ford" />
    </>
  );
}

const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(<Garage />);
content_copyCOPY

https://www.w3schools.com/react/react_props.asp