UNPKG

@wordpress/block-library

Version:
11 lines (9 loc) 344 B
/** * WordPress dependencies */ import { useInnerBlocksProps, useBlockProps } from '@wordpress/block-editor'; export default function QuerySave( { attributes: { tagName: Tag = 'div' } } ) { const blockProps = useBlockProps.save(); const innerBlocksProps = useInnerBlocksProps.save( blockProps ); return <Tag { ...innerBlocksProps } />; }