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