"use client"; import { formatDateTime } from "@/lib/constants"; import { Clock, ExternalLink, Timer } from "lucide-react"; interface InspectionMetaProps { url: string; createdAt: string; durationSeconds: number; } /** 검사 메타 정보 (URL, 일시, 소요시간) */ export function InspectionMeta({ url, createdAt, durationSeconds, }: InspectionMetaProps) { return (
); }