/** * External dependencies */ import { useBlockProps } from '@wordpress/block-editor'; import { Disabled } from '@wordpress/components'; import { __ } from '@wordpress/i18n'; export interface Attributes { className?: string; } const Edit = () => { const blockProps = useBlockProps( { className: 'woocommerce wc-block-breadcrumbs', } ); return (
{ __( 'Breadcrumbs', 'woo-gutenberg-products-block' ) } { __( ' / Navigation / Path', 'woo-gutenberg-products-block' ) }
); }; export default Edit;