Files
ebiz-dify-ai/web/app/(commonLayout)/explore/chat/page.tsx
2023-07-27 13:27:34 +08:00

14 lines
270 B
TypeScript

import type { FC } from 'react'
import React from 'react'
import UniversalChat from '@/app/components/explore/universal-chat'
const Chat: FC = () => {
return (
<div className='h-full p-2'>
<UniversalChat />
</div>
)
}
export default React.memo(Chat)