mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 19:59:50 +08:00
23e3413655
Co-authored-by: StyleZhang <jasonapring2015@outlook.com>
14 lines
270 B
TypeScript
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)
|