Files
Perplexica/src/app/c/[chatId]/page.tsx
2025-10-24 22:58:10 +05:30

11 lines
164 B
TypeScript

'use client';
import ChatWindow from '@/components/ChatWindow';
import React from 'react';
const Page = () => {
return <ChatWindow />;
};
export default Page;