MCPcopy Create free account
hub / github.com/WeAreAigur/client / TranscriptLineView

Function TranscriptLineView

apps/docs/components/Chat/Chat.tsx:137–145  ·  view source on GitHub ↗
(props: { transcriptLine: TranscriptLine })

Source from the content-addressed store, hash-verified

135}
136
137function TranscriptLineView(props: { transcriptLine: TranscriptLine }) {
138 const speaker = props.transcriptLine.speaker;
139 return (
140 <div>
141 <span className={speaker === 'You' ? 'text-secondary' : 'text-primary'}>{speaker}: </span>
142 <span>{props.transcriptLine.text}</span>
143 </div>
144 );
145}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected