/** * WordPress dependencies. */ const { blockEditor: { InspectorControls, }, components: { Disabled, PanelBody, TextControl, }, element: { Fragment, createElement, }, i18n: { __, }, serverSideRender: ServerSideRender, } = wp; const editSitewideNoticesBlock = ( { attributes, setAttributes } ) => { const { title } = attributes; return ( { setAttributes( { title: text } ); } } /> ); }; export default editSitewideNoticesBlock;