UNPKG

@wordpress/block-library

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