mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 19:59:50 +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)
|