@wordpress/block-library
Version:
Block library for the WordPress editor.
11 lines (10 loc) • 311 B
JavaScript
// packages/block-library/src/missing/save.js
import { RawHTML } from "@wordpress/element";
import { jsx } from "react/jsx-runtime";
function save({ attributes }) {
return /* @__PURE__ */ jsx(RawHTML, { children: attributes.originalContent });
}
export {
save as default
};
//# sourceMappingURL=save.js.map