mirror of
https://github.com/ItzCrazyKns/Perplexica.git
synced 2025-05-02 17:22:32 +00:00
10 lines
252 B
TypeScript
10 lines
252 B
TypeScript
import ChatWindow from '@/components/ChatWindow';
|
|
import React from 'react';
|
|
|
|
const Page = ({ params }: { params: Promise<{ chatId: string }> }) => {
|
|
const { chatId } = React.use(params);
|
|
return <ChatWindow id={chatId} />;
|
|
};
|
|
|
|
export default Page;
|