Perplexica/ui/app/c/[chatId]/page.tsx

8 lines
183 B
TypeScript
Raw Normal View History

2024-06-29 11:09:51 +05:30
import ChatWindow from '@/components/ChatWindow';
const Page = ({ params }: { params: { chatId: string } }) => {
return <ChatWindow id={params.chatId} />;
2024-06-29 11:09:51 +05:30
};
export default Page;