feat: chat in explore support agent (#647)
Co-authored-by: StyleZhang <jasonapring2015@outlook.com>
This commit is contained in:
13
web/app/(commonLayout)/explore/chat/page.tsx
Normal file
13
web/app/(commonLayout)/explore/chat/page.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
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)
|
||||
Reference in New Issue
Block a user