UNPKG

@wordpress/block-library

Version:
13 lines (12 loc) 423 B
// 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