2024-02-04 16:10:46 +08:00
|
|
|
'use client'
|
2023-05-15 08:51:32 +08:00
|
|
|
import React from 'react'
|
2024-02-04 16:10:46 +08:00
|
|
|
import ChatWithHistoryWrap from '@/app/components/base/chat/chat-with-history'
|
2023-05-15 08:51:32 +08:00
|
|
|
|
2024-06-24 12:29:14 +08:00
|
|
|
const Chat = () => {
|
2023-05-15 08:51:32 +08:00
|
|
|
return (
|
2024-02-04 16:10:46 +08:00
|
|
|
<ChatWithHistoryWrap />
|
2023-05-15 08:51:32 +08:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default React.memo(Chat)
|