What is React?
A JS library for building user interfaces. Efficiently updates and renders the right components based on state. Encapsulated components that manage their own state. Works on Node and can make mobile apps with React Native.
What is a React element?
The smallest building blocks of React apps. They describe what you want to see on the screen written in XML and HTML. They are plain objects that are cheap to create and immutable meaning once it is made you cannot change its children or attributes.
How do you mount a React element to the DOM?