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