- {/* TODO 7: If isInterested โ show โญ before artist name */} - "Artist name here" + {isInterested ? "โญ " : ""} {artist}
- {/* TODO 8: Display stage, day, hour from props */} - "Stage ยท Day ยท Hour" + {stage}ยท {day} ยท{hour}
- {/* TODO 9: Display the ticketsStatusText */} - "Tickets status text" -
+{ticketsStatusText}
- {/* TODO 10: Display the interestedText */} - "Interested status text" + {isInterested ? INTERESTED_STATUS.ADDED : INTERESTED_STATUS.NOT_ADDED}