Skip to content

RtkDebuggerVideo

Properties

PropertyTypeRequiredDefaultDescription
iconPackIconPack1❌defaultIconPackIcon pack
meetingMeeting✅-Meeting object
sizeSize1✅-Size
statesStates1✅-States object
tRtkI18n1❌useLanguage()Language

Usage Examples

Basic Usage

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

With Properties

import { RtkDebuggerVideo } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkDebuggerVideo
meeting={meeting}
size="md"
/>
);
}