A component which lists all available plugins from their preset, and ability to enable or disable plugins.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
config |
UIConfig |
❌ | createDefaultConfig() |
Config |
iconPack |
IconPack |
❌ | defaultIconPack |
Icon pack |
meeting |
Meeting |
✅ | - | Meeting object |
size |
Size |
✅ | - | Size |
t |
RtkI18n |
❌ | useLanguage() |
Language |
import { RtkPlugins } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkPlugins />;
}import { RtkPlugins } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkPlugins
meeting={meeting}
size="md"
/>
);
}