+ {entries.map((entry, i) => {
+ const kind = patchKind(entry.type);
+ return (
+
+
+
+
+ {entry.version ?? t("Unknown", lang)}
+
+ {entry.type && {entry.type}}
+ {entry.date && (
+ {entry.date}
+ )}
+
+
+ {entry.changes.map((change, j) => (
+ -
+ {change}
+
+ ))}
+
+
+ );
+ })}
+