UNPKG

@wordpress/block-library

Version:
15 lines (13 loc) 402 B
/** * WordPress dependencies */ import { InnerBlocks } from '@wordpress/block-editor'; export default function save( { attributes } ) { if ( attributes.ref ) { // Avoid rendering inner blocks when a ref is defined. // When this id is defined the inner blocks are loaded from the // `wp_navigation` entity rather than the hard-coded block html. return; } return <InnerBlocks.Content />; }