Transitional shim component that forwards its props to ``, preserving the legacy four-prop signature for hub call sites during migration. > ⚠️ **Deprecated** — this component is scheduled for deletion after the hub-side migration completes. Use [``](https://github.com/flamingo-stack/openframe-oss-lib/blob/main/src/components/video-bites/video-bites-strip.tsx) directly in all new code. ## Key Components ### `VideoBitesDisplayProps` | Prop | Type | Default | Description | |---|---|---|---| | `bites` | `VideoTeaser[]` | — | Array of video bites/teasers to render | | `title` | `string` | `DEFAULT_VIDEO_BITES_TITLE` | Section heading text | | `filterPublished` | `boolean` | `true` | When true, only published bites are shown | | `showTitle` | `boolean` | `true` | Toggles visibility of the section heading | ### `VideoBitesDisplay` Client component that passes all four props directly to `` with no additional logic. ## Usage Example ```typescript // ⚠️ Deprecated — prefer VideoBitesStrip directly import { VideoBitesDisplay } from '@openframe/lib/components/video-bites'; // ✅ Preferred replacement import { VideoBitesStrip } from '@openframe/lib/components/video-bites'; ``` Do not add features or new consumers to this component. Track migration progress via the grep gate described in the JSDoc before removal.