Learning Fuze > react-function-components > Flashcards
What is a React component?
abstraction of your entire website - into reusable code - they take an input called props and return react elements describing what should appear on the page
How do you define a function component in React?
you can define it similiar to a js function in es5 or es6 with a capital starting letter
How do you mount a component to the DOM?
ReactDOM.render(element,container)