/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { useBlockProps, InspectorControls } from '@wordpress/block-editor'; import { PanelBody, ToggleControl } from '@wordpress/components'; import { getSetting } from '@woocommerce/settings'; import Noninteractive from '@woocommerce/base-components/noninteractive'; /** * Internal dependencies */ import Block from './block'; export const Edit = ( { attributes, setAttributes, }: { attributes: { isShippingCalculatorEnabled: boolean; className: string; lock: { move: boolean; remove: boolean; }; }; setAttributes: ( attributes: Record< string, unknown > ) => void; } ): JSX.Element => { const { isShippingCalculatorEnabled, className } = attributes; const shippingEnabled = getSetting( 'shippingEnabled', true ); const blockProps = useBlockProps(); return (