--- const { kind = "note", // note | definition | these | objection | limite | scene | procedure title, } = Astro.props; const labels = { note: "Note", definition: "Définition", these: "Thèse", objection: "Objection", limite: "Limite", scene: "Scène", procedure: "Procédure", }; const label = labels[kind] ?? "Note"; ---
{label} {title ? {title} : null}