MingruiZhang's picture
Minor things: revalidate cache, table css, card title (#16)
973f0d8 unverified
raw
history blame
404 Bytes
import ChatDataLoad from '@/components/chat/ChatDataLoad';
import { Suspense } from 'react';
import Loading from '@/components/ui/Loading';
interface PageProps {
params: {
id: string;
};
}
export default async function Page({ params }: PageProps) {
const { id: chatId } = params;
return (
<Suspense fallback={<Loading />}>
<ChatDataLoad chatId={chatId} />
</Suspense>
);
}