Composing Components
Let's learn how to build new components from other components.
We'll cover the following...
Now that we have a component for each seat, we want to combine multiple seats into a row and multiple rows into a venue. Invoking a component from another component normally involves a JSX call. The call essentially looks like the component is an HTML tag with the name of the component first, the props then follow with the same syntax used to ...