golden hour
/home/godaofbq/hardchambers.com/wp-content/plugins/essential-blocks/src/blocks/tab/src
⬆️ Go Up
Upload
File/Folder
Size
Actions
.htaccess
127 B
Del
OK
attributes.js
228 B
Del
OK
constants
-
Del
OK
edit.js
1.87 KB
Del
OK
icon.svg
2.69 KB
Del
OK
index.js
544 B
Del
OK
save.js
544 B
Del
OK
Edit: save.js
import { // RichText, // useBlockProps, InnerBlocks, } from "@wordpress/block-editor"; const save = ({ attributes }) => { const { tabId, tabParentId } = attributes; return ( <> <div className={`eb-tab-wrapper`} data-tab-id={tabId} data-tab-parent-id={tabParentId} > <div className="eb-tab-inner"> <InnerBlocks.Content /> </div> </div> </> ); }; export default save;
Save