通知を処理するコンポーネントです。 表示する通知と、音声で聞く通知を設定できます。 上限も設定できます。
| プロパティ | 型 | 必須 | デフォルト | 説明 |
|---|---|---|---|---|
config |
UIConfig |
❌ | createDefaultConfig() |
Config オブジェクト |
iconPack |
IconPack |
❌ | defaultIconPack |
アイコンパック |
meeting |
Meeting |
✅ | - | Meeting オブジェクト |
size |
Size |
✅ | - | サイズ |
states |
States |
✅ | - | States オブジェクト |
t |
RtkI18n |
❌ | useLanguage() |
言語 |
import { RtkNotifications } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkNotifications />;
}import { RtkNotifications } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkNotifications
meeting={meeting}
size="md"
/>
);
}