Skip to content
Cloudflare Docs

RtkTranscript

A component which shows a transcript. You need to remove the element after you receive the rtkTranscriptDismiss event.

Properties

PropertyTypeRequiredDefaultDescription
tRtkI18nuseLanguage()Language
transcriptTranscript & { renderedId?: string }-Message

Usage Examples

Basic Usage

import { RtkTranscript } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkTranscript />;
}

With Properties

import { RtkTranscript } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkTranscript
t={rtki18n}
transcript="example"
/>
);
}