Severian's picture
initial commit
a8b3f00
raw
history blame
218 Bytes
'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)