/** * External dependencies */ import { useBlockProps } from '@wordpress/block-editor'; import { __ } from '@wordpress/i18n'; import { Button, Disabled, Notice } from '@wordpress/components'; /** * Internal dependencies */ import './editor.scss'; export interface Attributes { className?: string; } const Edit = () => { const blockProps = useBlockProps( { className: 'woocommerce wc-block-add-to-cart-form', } ); return (

{ __( 'Customers will see product add-to-cart options displayed here, dependent on the product type.', 'woo-gutenberg-products-block' ) }

); }; export default Edit;