UNPKG

@wordpress/block-library

Version:
8 lines (6 loc) 305 B
import { useInnerBlocksProps, useBlockProps } from '@wordpress/block-editor'; export default function save( { attributes: { tagName: Tag = 'div' } } ) { const blockProps = useBlockProps.save(); const innerBlocksProps = useInnerBlocksProps.save( blockProps ); return <Tag { ...innerBlocksProps } />; }