2024-06-24 12:29:14 +08:00

12 lines
218 B
TypeScript

'use client'
import React from 'react'
import ChatWithHistoryWrap from '@/app/components/base/chat/chat-with-history'
const Chat = () => {
return (
<ChatWithHistoryWrap />
)
}
export default React.memo(Chat)