- Home
- /Realtime
- /…
- /React
- /RtkSpotlightGrid
RtkSpotlightGrid
Last updated Apr 21, 2026|Copy as Markdown|View as Markdown|Agent setup OverviewPropertiesUsage ExamplesBasic UsageWith Properties
A grid component that renders two lists of participants: pinnedParticipants and participants.
You can customize the layout to a column view, by default is is row.
- Participants from
pinnedParticipants[] are rendered inside a larger grid.
- Participants from
participants[] array are rendered in a smaller grid.
import { RtkSpotlightGrid } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkSpotlightGrid />;
}
import { RtkSpotlightGrid } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkSpotlightGrid
aspectRatio="example"
gap={42}
gridSize="md"
/>
);
}
PreviousRtkSpinnerNextRtkSpotlightIndicator