Styling React Component, Props, & States Flashcards
A _______ renders a reusable piece of the UI.
a. JSX tag
b. JSX expression
c. Component
d. Module
c. Component
How do you create a React component?
As either a JavaScript function or class
T or F: React uses a templating language for creating components.
False. React components are written in plain JavaScript, with the help of JSX
Which component do you usually pass to ReactDOM.render()?
Top-level component
When should you break a component into smaller components?
When the component has too many responsibilities.
When a component contains other components, it’s called:
Composition
Why is a capital letter necessary in the component name?
To differentiate custom components from native DOM elements