Skip to content
Cloudflare Docs

RtkStage

A component used as a stage that commonly houses the grid and sidebar components.

Properties

PropertyTypeRequiredDefaultDescription
iconPackIconPackdefaultIconPackIcon pack
tRtkI18nuseLanguage()Language

Usage Examples

Basic Usage

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

With Properties

import { RtkStage } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkStage
iconPack={defaultIconPack}
t={rtki18n}
/>
);
}