2024-02-04 16:10:46 +08:00
|
|
|
'use client'
|
2023-05-15 08:51:32 +08:00
|
|
|
import type { FC } from 'react'
|
|
|
|
|
import React from 'react'
|
|
|
|
|
|
|
|
|
|
import type { IMainProps } from '@/app/components/share/chat'
|
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
|
|
|
|
2023-05-25 16:59:47 +08:00
|
|
|
const Chat: FC<IMainProps> = () => {
|
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)
|