Skip to content

RtkNotifications

A component which handles notifications. You can configure which notifications you want to see and which ones you want to hear. There are also certain limits which you can set as well.

Properties

PropertyTypeRequiredDefaultDescription
configUIConfig❌createDefaultConfig()Config object
iconPackIconPack❌defaultIconPackIcon pack
meetingMeeting✅-Meeting object
sizeSize✅-Size
statesStates✅-States object
tRtkI18n❌useLanguage()Language

Usage Examples

Basic Usage

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

With Properties

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