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