{/* 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" + {getTicketsStatusText(ticketsLeft)}
{/* TODO 10: Display the interestedText */} - "Interested status text" + {getInterestedText(isInterested)}