import { memo } from 'react'; import Avatar from './Avatar'; import { format } from '../utils/embed'; import { chatItemStyle } from './helpers/BubbleStyle'; import { useVisitor } from './VisitorContext'; function PM(props) { const { chat } = props; const [visitor] = useVisitor(); return (
  • ); } export default memo(PM); /* PM.propTypes = { chat: MessageType.isRequired }; */