// @flow import * as React from 'react'; import classNames from 'classnames'; import sanitizeHTML from 'sanitize-html'; import './styles/MessageTextContent.scss'; type Props = {| body?: string, className?: string, title: string, |}; function MessageTextContent({ body = '', title, className }: Props) { return (
{title}
{/* eslint-disable-next-line react/no-danger */}
); } export default MessageTextContent;