@wordpress/block-library
Version:
Block library for the WordPress editor.
14 lines (13 loc) • 349 B
JavaScript
import { createElement } from "@wordpress/element";
/**
* WordPress dependencies
*/
import { RawHTML } from '@wordpress/element';
export default function save(_ref) {
let {
attributes
} = _ref;
// Preserve the missing block's content.
return createElement(RawHTML, null, attributes.originalContent);
}
//# sourceMappingURL=save.js.map