import { __ } from "@wordpress/i18n"; import { useBlockProps, RichText } from "@wordpress/block-editor"; import "./editor.scss"; export default function Edit({ attributes, setAttributes }) { const { content } = attributes; return (

setAttributes({ content: value })} />

); }