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'
|
|
|
|
import Main from '@/app/components/share/chat'
|
|
|
|
|
2023-05-25 16:59:47 +08:00
|
|
|
const Chat: FC<IMainProps> = () => {
|
2023-05-15 08:51:32 +08:00
|
|
|
return (
|
2023-05-25 16:59:47 +08:00
|
|
|
<Main />
|
2023-05-15 08:51:32 +08:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default React.memo(Chat)
|