+
Sala: {room.name}
+
+
+ {session.title}
+
+
+ 0} className={`h-full ${isSaved ? "text-gray-300" : "text-gray-500"} font-bold text-2xl`}>{session.description}
+
+
+
+ );
+};
+
+interface WrappedCardEventProps {
+ session: ISession;
+ children: React.ReactNode;
+ className: string;
+}
+
+const WrappedCardEvent: React.FC