React-Elements Flashcards
1
Q
What is React?
A
React is a javascript library that is used to create UI’s through components that represent different parts of a webpage
2
Q
What is a React element?
A
A React Element is what gets returned from components. It’s an object that virtually describes the DOM nodes that a component represents.
3
Q
How do you mount a React element to the DOM?
A
By using the return key word within your react component