- Can you use all of the standard HTML tags as JSX elements?
- 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
- What does the Fragment component from React do?
- It acts as a container component by negating the need to render pointless elements, such as container divs