import React from 'react' import { FormNonCompound, RichTextEditor } from '@toptal/picasso-forms' import { noop } from '@toptal/picasso-utils' import type { ASTType } from '@toptal/picasso-rich-text-editor' const ast: ASTType = { type: 'root', children: [ { type: 'element', tagName: 'h3', properties: {}, children: [ { type: 'text', value: 'Values inside disabled RichTextEditor' }, ], }, ], } const Example = () => { return ( {}}> {' '} ) } export default Example