import { useI18n } from "../i18n/I18nContext"; import type { SuggestedVideo } from "../types/api"; type Props = { videos: SuggestedVideo[]; activeId: string | null; loadingId: string | null; onSelect: (video: SuggestedVideo) => void; }; export function SuggestedRail({ videos, activeId, loadingId, onSelect }: Props) { const { t } = useI18n(); return ( ); }