UNPKG

@wordpress/block-library

Version:
15 lines (14 loc) 450 B
// packages/block-library/src/accordion-panel/save.js import { useBlockProps, useInnerBlocksProps } from "@wordpress/block-editor"; import { jsx } from "react/jsx-runtime"; function save() { const blockProps = useBlockProps.save({ role: "region" }); const innerBlocksProps = useInnerBlocksProps.save(blockProps); return /* @__PURE__ */ jsx("div", { ...innerBlocksProps }); } export { save as default }; //# sourceMappingURL=save.js.map