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