import type { FC } from 'react' import { memo } from 'react' import type { ChatItem } from '../../types' import { Markdown } from '@/app/components/base/markdown' import cn from '@/utils/classnames' interface BasicContentProps { item: ChatItem } const BasicContent: FC = ({ item, }) => { const { annotation, content, } = item if (annotation?.logAnnotation) return return ( ) } export default memo(BasicContent)