+ {lifecycleData.durations.summations.map((key, index, array) => {
+ const isFirst = index === 0;
+ const isLast = index === array.length - 1;
+ return (
+
+
+ {key.percentage > 15 ?
+ <>
+
{key.roundedPercentage}
+
+ {key.status}
+
+ >
+ : null}
+
+ );
+ })}
+
+