A component which shows a transcript.
You need to remove the element after you receive the
rtkTranscriptDismiss event.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
t |
RtkI18n |
❌ | useLanguage() |
Language |
transcript |
Transcript & { renderedId?: string } |
❌ | - | Message |
import { RtkTranscript } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkTranscript />;
}import { RtkTranscript } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkTranscript
t={rtki18n}
transcript="example"
/>
);
}