Create New Item
×
Item Type
File
Folder
Item Name
×
Search file in folder and subfolders...
File Manager
/
wp-content
/
plugins
/
generateblocks
/
src
/
blocks
/
query-loop
/
components
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
import { InspectorAdvancedControls } from '@wordpress/block-editor'; import BlockLabel from '../../../extend/inspector-control/controls/block-label'; export default function( { blockLabel, setAttributes } ) { return ( <InspectorAdvancedControls> <BlockLabel value={ blockLabel } onChange={ ( value ) => setAttributes( { blockLabel: value } ) } /> </InspectorAdvancedControls> ); }