+ {playlist && (
+ <>
+ {playlist.images && playlist.images?.length > 0 ? (
+
+
{playlist.type}
+
{playlist.name}
+
+
{parse(playlist.description || "")}
+
+
+ {playlist.owner?.display_name}
+ {playlist?.followers?.total ? (
+ playlist?.followers?.total > 0 && (
+
+ {playlist.followers?.total.toLocaleString()} {playlist.followers?.total > 1 ? "likes" : "like"}
+
+ )
+ ) : (
+ 0 likes
+ )}
+ {playlist?.tracks?.items && playlist?.tracks?.items?.length > 0 && (
+ {playlist.tracks.total.toLocaleString()} songs
+ )}{" "}
+
+