Learning Fuze > react-function-components > Flashcards
What is a React component?
independent and reusable bits of code
How do you define a function component in React?
function Welcome(props) {
return <h1>Hello, {props.name}</h1>;
}How do you mount a component to the DOM?
const container = document.querySelector('#root');
const root = ReactDOM.createRoot(container);
root.render();