"use client"; import dynamic from "next/dynamic"; import type { Antiquity } from "@/app/content"; const AntiquityShowcase = dynamic( () => import("@/app/components/antiquity/AntiquityShowcase").then((m) => m.AntiquityShowcase), { ssr: false, loading: () => (
Đang tải phòng trưng bày 3D…
), }, ); export default function AntiquityShowcaseClient({ items }: { items: Antiquity[] }) { return ; }