dify/web/app/(shareLayout)/chatbot/[token]/page.tsx

12 lines
215 B
TypeScript
Raw Normal View History

2024-05-15 16:14:49 +08:00
'use client'
2024-06-27 17:58:45 +08:00
import React from 'react'
import EmbeddedChatbot from '@/app/components/base/chat/embedded-chatbot'
2024-06-24 12:29:14 +08:00
const Chatbot = () => {
return (
2024-06-27 17:58:45 +08:00
<EmbeddedChatbot />
)
}
export default React.memo(Chatbot)