- {/* TODO 7: If isInterested → show ⭐ before artist name */} - "Artist name here" + {isInterested ? "⭐ " : ""} + {Props.artist} +
- {/* TODO 8: Display stage, day, hour from props */} - "Stage · Day · Hour" + {Props.stage} + {Props.day} + {Props.hour}
- {/* TODO 9: Display the ticketsStatusText */} - "Tickets status text" -
+{ticketsStatusText}
-- {/* TODO 10: Display the interestedText */} - "Interested status text" -
+{interestedText}