What is React?
React is a free and open-source front-end JavaScript library for building user interfaces based on User Interface components.
What is a React element?
it is an object representation of a virtual DOM node
its an object that describes an html element that will ultimately be displayed on the screen
How do you mount a React element to the DOM?
with the render method
What is a React component?
Components are independent and reusable bits of code. They serve the same purpose as JavaScript functions, but work in isolation and return HTML.
How do you define a function component in React?
same way as defining a function
How do you mount a component to the DOM?