24 lines
416 B
JavaScript
24 lines
416 B
JavaScript
import { useSelect } from '@wordpress/data';
|
|
|
|
/**
|
|
* BlockSettings
|
|
*
|
|
* Bundles the <InspectorControls> used for several blocks
|
|
* *
|
|
* @param {object} props
|
|
* @param {number} props.imageId The ID of the image to display.
|
|
* @param {string} props.size The size of the image to display. Defaults to 'full'.
|
|
* @returns {*} React JSX
|
|
*/
|
|
export default function BlockSettings(props) {
|
|
|
|
|
|
|
|
return (
|
|
<>
|
|
|
|
|
|
</>
|
|
)
|
|
}
|