What is a React component?
A function or a class the returns React elements. Reusable. Used for a chunk of UI.
How do you define a function component in React?
By creating a function with a capital first letter that returns a React DOM element. In the return it is HTML that is converted to a React DOM element.
How do you mount a component to the DOM?