Skip to content
Cloudflare Docs

RtkDebugger

A troubleshooting component to identify and fix any issues in the meeting.

Properties

PropertyTypeRequiredDefaultDescription
iconPackIconPackdefaultIconPackIcon pack
meetingMeeting-Meeting object
sizeSize-Size
statesStates-States object
tRtkI18nuseLanguage()Language

Usage Examples

Basic Usage

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

With Properties

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