2024-06-29 11:09:51 +05:30
|
|
|
import ChatWindow from '@/components/ChatWindow';
|
2025-03-19 13:42:15 +05:30
|
|
|
import React from 'react';
|
2024-06-29 11:09:51 +05:30
|
|
|
|
2025-03-19 13:42:15 +05:30
|
|
|
const Page = ({ params }: { params: Promise<{ chatId: string }> }) => {
|
|
|
|
|
const { chatId } = React.use(params);
|
|
|
|
|
return <ChatWindow id={chatId} />;
|
2024-06-29 11:09:51 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default Page;
|