UNPKG

@wordpress/block-library

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