Skip to content

RtkChat

Last updated View as MarkdownAgent setup

Fully featured chat component with image & file upload, emoji picker and auto-scroll.

Properties

Property Type Required Default Description
config UIConfig1 createDefaultConfig() Config
iconPack IconPack defaultIconPack Icon pack
meeting Meeting - Meeting object
overrides Overrides defaultOverrides UI Overrides
size Size - Size
t RtkI18n useLanguage() Language

Usage Examples

Basic Usage

import { RtkChat } from '@cloudflare/realtimekit-react-ui';

function MyComponent() {
  return <RtkChat />;
}

With Properties

import { RtkChat } from '@cloudflare/realtimekit-react-ui';

function MyComponent() {
  return (
    <RtkChat
      meeting={meeting}
      size="md"
    />
  );
}

Was this helpful?