What is React?
A JS library for building user interfaces
What is a React element?
Object
Elements are the smallest building blocks of React apps.
An element describes what you want to see on the screen:
How do you mount a React element to the DOM?
ReactDOM.render(element, container[, callback])