+ Overall: 4 - Positive
+
+
+
+ {paragraphs.map((p, index) => (
+
+
+
+ {p.speaker === 1 ? "Tester" : "Interviewer"} (
+ {formatDuration(p.start - args.offset)} -{" "}
+ {formatDuration(p.end - args.offset)})
+
+ {p.sentiment && getSentiment(p.sentiment).text}
+
+ {p.words.map((w) => (
+
+ ))}
+
+ ))}
+
+ );
+};
diff --git a/src/stories/highlight/index.stories.tsx b/src/stories/highlight/index.stories.tsx
index 702ce927..61524e68 100644
--- a/src/stories/highlight/index.stories.tsx
+++ b/src/stories/highlight/index.stories.tsx
@@ -16,6 +16,7 @@ import { Transcript } from "./demo-parts/transcript-base";
import { TDiarization } from "./demo-parts/transcript-diarization";
import { TParagraph } from "./demo-parts/transcript-paragraph";
import { Tag } from "../tags";
+import { TSentiment } from "./demo-parts/transcript-sentiment";
export interface StoryArgs extends HighlightArgs {
words: Array