How to use the @wordpress/block-editor.InnerBlocks.ButtonBlockAppender function in @wordpress/block-editor

To help you get started, we’ve selected a few @wordpress/block-editor examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github WordPress / gutenberg / packages / block-library / src / group / edit.native.js View on Github external
hasInnerBlocks,
	isSelected,
	getStylesFromColorScheme,
} ) {
	if ( ! isSelected && ! hasInnerBlocks ) {
		return (
github WordPress / gutenberg / packages / block-library / src / group / edit.js View on Github external
],
		{
			contrastCheckers: [ { backgroundColor: true, textColor: true } ],
		}
	);

	return (
		<>
			{ InspectorControlsColorPanel }
			
				
					
					<div>
						<div>
							
						</div>
					</div>
				
			
		
	);
}