mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-09 02:46:52 +08:00
Co-authored-by: Gillian97 <jinling.sunshine@gmail.com> Co-authored-by: Joel <iamjoel007@gmail.com>
14 lines
278 B
TypeScript
14 lines
278 B
TypeScript
import type { FC } from 'react'
|
|
import React from 'react'
|
|
|
|
import type { IMainProps } from '@/app/components/share/chat'
|
|
import Main from '@/app/components/share/chatbot'
|
|
|
|
const Chatbot: FC<IMainProps> = () => {
|
|
return (
|
|
<Main />
|
|
)
|
|
}
|
|
|
|
export default React.memo(Chatbot)
|