dify/web/app/(shareLayout)/chatbot/[token]/page.tsx
2024-06-27 17:58:45 +08:00

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)