Perplexica/ui/app/c/[chatId]/page.tsx
2024-08-15 22:29:15 +01:00

7 lines
183 B
TypeScript

import ChatWindow from '@/components/ChatWindow';
const Page = ({ params }: { params: { chatId: string } }) => {
return <ChatWindow id={params.chatId} />;
};
export default Page;