/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { Icon, external } from '@woocommerce/icons'; import { ADMIN_URL } from '@woocommerce/settings'; import { InspectorControls } from '@wordpress/block-editor'; /** * Component to render an edit product link in the sidebar. */ const EditProductLink = ( { productId } ) => { return (
{ __( "Edit this product's details", 'woo-gutenberg-products-block' ) }
{ __( 'Edit details such as title, price, description and more.', 'woo-gutenberg-products-block' ) }
); }; export default EditProductLink;