Tying Into the Page
Learn about writing the venue component in this lesson!
We'll cover the following...
We'll cover the following...
The Venue component
As we combined Seat components into a Row, we also need to combine Row components into a Venue. Our Venue component is very similar to Row:
There’s a minor difference. The Venue returns an HTML table, and the props type is a little different, but basically the structure is similar: we still use map to convert a list of row numbers to a list of row items.
We do cheat here a little bit in that the list of row numbers is hard-coded. This is because ...