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