@wordpress/block-library
Version:
Block library for the WordPress editor.
13 lines (12 loc) • 423 B
JavaScript
// packages/block-library/src/post-comment/save.js
import { useInnerBlocksProps, useBlockProps } from "@wordpress/block-editor";
import { jsx } from "react/jsx-runtime";
function save() {
const blockProps = useBlockProps.save();
const innerBlocksProps = useInnerBlocksProps.save(blockProps);
return /* @__PURE__ */ jsx("div", { ...innerBlocksProps });
}
export {
save as default
};
//# sourceMappingURL=save.js.map