react-function-components Flashcards
1
Q
What is a React component?
A
Similar to JS functions, accept “props” as paramater, return react elements
2
Q
How do you define a function component in React?
A
function FunctionName ( ) { return }
3
Q
How do you mount a component to the DOM?
A
ReactDOM.render()