'use client'; import { Card, CardContent } from '@/components/ui/card'; import { TicketDetectionPreview } from './TicketDetectionPreview'; interface TicketDetectionPreviewCardProps { ticketId: string; videoId?: string | null; assignmentId: number; } export function TicketDetectionPreviewCard({ ticketId, videoId, assignmentId, }: TicketDetectionPreviewCardProps) { if (!videoId) return null; return (
); }