@wordpress/block-library
Version:
Block library for the WordPress editor.
15 lines (14 loc) • 367 B
JavaScript
// packages/block-library/src/tab/save.js
import { useBlockProps } from "@wordpress/block-editor";
import { jsx } from "react/jsx-runtime";
function save() {
const blockProps = useBlockProps.save({
type: "button",
role: "tab"
});
return /* @__PURE__ */ jsx("button", { ...blockProps });
}
export {
save as default
};
//# sourceMappingURL=save.mjs.map