Modern Front-End Development for Rails: Unnecessary ../components in row.tsx PDF p 57 (B6)

The import statement in row.tsx has an unnecessary directory in its import statement for Seat.

In book:

// works but don't need to travel up the directory since the files are in the same directory
import Seat from "../components/seat"

Since the files are in the same directory, going up a directory is not necessary like it is when including venue in the venue_display pack.

// cleaner
import Seat from "./seat"
1 Like