The code for Venue has a typo, the current text is:
const rowNumbers = Array.from(Array(props.seatsPerRow).keys())
But the working code for the example is with rows instead of seatsPerRow. The right code is below
const rowNumbers = Array.from(Array(props.rows).keys())