@wordpress/block-library
Version:
Block library for the WordPress editor.
11 lines (10 loc) • 392 B
JavaScript
import { jsx } from "react/jsx-runtime";
import { useBlockProps, InnerBlocks } from "@wordpress/block-editor";
function save() {
const blockProps = useBlockProps.save();
return /* @__PURE__ */ jsx("div", { className: "wp-block-form-submit-wrapper", ...blockProps, children: /* @__PURE__ */ jsx(InnerBlocks.Content, {}) });
}
export {
save as default
};
//# sourceMappingURL=save.js.map