import { useApiHost } from "@/api"; type ChatEventThumbnailsRowProps = { events: { id: string }[]; }; /** * Horizontal scroll row of event thumbnail images for chat (e.g. after search_objects). * Renders nothing when events is empty. */ export function ChatEventThumbnailsRow({ events, }: ChatEventThumbnailsRowProps) { const apiHost = useApiHost(); if (events.length === 0) return null; return (
); }