react-elements Flashcards
1
Q
What is React?
A
A JavaScript library for building user interfaces.
2
Q
What is a React element?
A
Elements are the smallest building blocks of React apps. An element describes what you want to see on the screen.
React element is a representation of an object that react use to create a DOM element.
3
Q
How do you mount a React element to the DOM?
A
ReactDOM.render(element, container[, callback])