@wordpress/block-library
Version:
Block library for the WordPress editor.
16 lines • 318 B
JavaScript
/**
* WordPress dependencies
*/
import { RawHTML } from '@wordpress/element';
import { jsx as _jsx } from "react/jsx-runtime";
export default function save({
attributes
}) {
const {
content
} = attributes;
return /*#__PURE__*/_jsx(RawHTML, {
children: content
});
}
//# sourceMappingURL=save.js.map