(props: { transcriptLine: TranscriptLine })
| 135 | } |
| 136 | |
| 137 | function 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected