What is a React component?
Conceptually, components are like JavaScript functions.
Components let you split the UI into independent, reusable pieces.
Think about each piece in isolation.
How do you define a function component in React?
Function name (props) {
Return (rendered React elements)
}
How do you mount a component to the DOM?
By using ReactDOM.render