+ {lines.length === 0 ? (
+
…
+ ) : (
+ lines.map((line, i) => {
+ const isLast = i === lines.length - 1;
+ const symbol = isLast && line.kind === "active" ? "→" : SYMBOL[line.kind];
+ return (
+
+
+ {String(((line.ts - start) / 1000).toFixed(2)).padStart(6, " ")}s
+
+ {symbol}
+
+ {line.text}
+ {isLast && line.kind === "active" && (
+
+ )}
+
+
+ );
+ })
+ )}
+
+