"use client"; import { ChatInputOrder } from "./ChatInputOrder"; import { ChatBubble } from "./ChatBubble"; import { ProductProps } from '@/app/(root)/order/[orderId]/_components/ProductInfo'; export type Chat = { id: number; userId: string; img: string; msg: string | null; order?: Omit; date: string; }; interface ChatOrderProps { data: { message: string; id: string; User: { name: string | null; image: string | null; }; chat: Chat; }[]; } export const dynamic = "force-dynamic"; function ChatOrder({ data }: ChatOrderProps) { return (
WILDRIFTBOOSTS
); } export { ChatOrder };