UNPKG

@plone/volto

Version:
17 lines (14 loc) 308 B
import React from 'react'; import cx from 'classnames'; const RichTextWidget = ({ value, className }) => value ? ( <p className={cx(className, 'richtext', 'widget')} dangerouslySetInnerHTML={{ __html: value.data, }} /> ) : ( '' ); export default RichTextWidget;