mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-14 08:56:00 +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)
|