用作舞台的组件,通常容纳 grid(网格)和 sidebar(侧边栏)组件。
| 属性 | 类型 | 必填 | 默认值 | 描述 |
|---|---|---|---|---|
iconPack |
IconPack |
❌ | defaultIconPack |
图标包 |
t |
RtkI18n |
❌ | useLanguage() |
语言 |
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}
/>
);
}