What are props in React?
Props are objects that are passed into React elements.
How do you pass props to a component?
When declaring a React element, after the Component name type the prop property equal to the value you want to pass. Value should be surrounded with {}.
How do you write JavaScript expressions in JSX?
Using the curly braces {}.