🏠 Root
/
home
/
artorgp
/
www
/
wp-content
/
plugins
/
a-z-listing
/
scripts
/
components
/
Editing: AZInspectorControls.js
import { createSlotFill, PanelBody } from '@wordpress/components'; export const { Fill, Slot } = createSlotFill( 'AZListingInspectorControls' ); const AZInspectorControls = ( { children, title } ) => ( <Fill> <PanelBody title={ title }>{ children }</PanelBody> </Fill> ); AZInspectorControls.Slot = Slot; export default AZInspectorControls;
Save
Cancel