mirror of
https://github.com/ItzCrazyKns/Perplexica.git
synced 2025-04-30 16:22:29 +00:00
8 lines
183 B
TypeScript
8 lines
183 B
TypeScript
import ChatWindow from '@/components/ChatWindow';
|
|
|
|
const Page = ({ params }: { params: { chatId: string } }) => {
|
|
return <ChatWindow id={params.chatId} />;
|
|
};
|
|
|
|
export default Page;
|