mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-19 15:56:55 +08:00
12 lines
215 B
TypeScript
12 lines
215 B
TypeScript
'use client'
|
|
import React from 'react'
|
|
import EmbeddedChatbot from '@/app/components/base/chat/embedded-chatbot'
|
|
|
|
const Chatbot = () => {
|
|
return (
|
|
<EmbeddedChatbot />
|
|
)
|
|
}
|
|
|
|
export default React.memo(Chatbot)
|