- Can you use all of the standard HTML tags as JSX elements?
- Yes, but you have to import any HTML tags that you want to use from react-dom
- No, you have to implement your own React components that render HTML content
- Yes, React supports this out of the box
- How do you access child elements from your component?
- Child JSX elements are always accessible via the children property
- Child JSX elements are passed as arguments to the render() method
- There is no way to access child elements from within a component
- What does the Fragment component from React do?
- It renders its children more efficiently
- It creates a reusable piece of markup that can then be reused throughout the app
- It acts as a container component by negating the need to render pointless elements, such as container divs