/** * External dependencies */ import classnames from 'classnames'; import { __ } from '@wordpress/i18n'; import { InspectorControls, useBlockProps } from '@wordpress/block-editor'; import { PanelBody, ExternalLink } from '@wordpress/components'; import { ADMIN_URL } from '@woocommerce/settings'; import { innerBlockAreas } from '@woocommerce/blocks-checkout'; import Noninteractive from '@woocommerce/base-components/noninteractive'; /** * Internal dependencies */ import { FormStepBlock, AdditionalFields, AdditionalFieldsContent, } from '../../form-step'; import Block from './block'; export const Edit = ( { attributes, setAttributes, }: { attributes: { title: string; description: string; showStepNumber: boolean; className: string; }; setAttributes: ( attributes: Record< string, unknown > ) => void; } ): JSX.Element => { return (

{ __( 'Account creation and guest checkout settings can be managed in the WooCommerce settings.', 'woo-gutenberg-products-block' ) }

{ __( 'Manage account settings', 'woo-gutenberg-products-block' ) }
); }; export const Save = (): JSX.Element => { return (
); };