A component used as a stage that commonly houses
the grid and sidebar components.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
iconPack |
IconPack |
❌ | defaultIconPack |
Icon pack |
t |
RtkI18n |
❌ | useLanguage() |
Language |
import { RtkStage } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkStage />;
}import { RtkStage } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkStage
iconPack={defaultIconPack}
t={rtki18n}
/>
);
}