RtkTranscripts
A component which handles transcripts. You can configure which transcripts you want to see and which ones you want to hear. There are also certain limits which you can set as well.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
config | UIConfig | ❌ | createDefaultConfig() | Config object |
meeting | Meeting | ✅ | - | Meeting object |
states | States | ✅ | - | States object |
t | RtkI18n | ❌ | useLanguage() | Language |
import { RtkTranscripts } from '@cloudflare/realtimekit-react-ui';
function MyComponent() { return <RtkTranscripts />;}import { RtkTranscripts } from '@cloudflare/realtimekit-react-ui';
function MyComponent() { return ( <RtkTranscripts meeting={meeting} /> );}