What is a React component?
A component is a javascript function that allows you to build UI’s by allowing you to build markup, apply CSS styling and JS logic all in one.
How do you define a component in React?
By creating a javascript function where the first letter of the function name has to be capitalized
How do you mount a component to the DOM (or “render” a component)?