Skip to content

RtkPollForm

Last updated View as MarkdownAgent setup

A component that lets you create a poll.

Properties

Property Type Required Default Description
iconPack IconPack defaultIconPack Icon pack
t RtkI18n useLanguage() Language

Usage Examples

Basic Usage

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

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

With Properties

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

function MyComponent() {
  return (
    <RtkPollForm
      iconPack={defaultIconPack}
      t={rtki18n}
    />
  );
}

Was this helpful?