props
is a special keyword in React used for passing data from one component to anotherprops
will return as an object
<ChildComponent text={"I'm a child component!"} />
const ChildComponent = (props) => {
return <p>{props.text}</p>;
}; // returns "I'm a child component!"