Skip to content

RtkIdleScreen

Last updated View as MarkdownAgent setup

A screen that handles the idle state, i.e; when you are waiting for data about the meeting, specifically the meeting object.

Properties

Property Type Required Default Description
config UIConfig createDefaultConfig() Config object
iconPack IconPack defaultIconPack Icon pack
meeting Meeting - Meeting
t RtkI18n useLanguage() Language

Usage Examples

Basic Usage

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

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

With Properties

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

function MyComponent() {
  return (
    <RtkIdleScreen
      meeting={meeting}
    />
  );
}

Was this helpful?