mirror of
https://github.com/ItzCrazyKns/Perplexica.git
synced 2025-11-20 20:18:15 +00:00
11 lines
164 B
TypeScript
11 lines
164 B
TypeScript
'use client';
|
|
|
|
import ChatWindow from '@/components/ChatWindow';
|
|
import React from 'react';
|
|
|
|
const Page = () => {
|
|
return <ChatWindow />;
|
|
};
|
|
|
|
export default Page;
|