/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { SHOP_URL } from '@woocommerce/block-settings'; import classNames from 'classnames'; /** * Internal dependencies */ type MiniCartShoppingButtonBlockProps = { className: string; }; const Block = ( { className, }: MiniCartShoppingButtonBlockProps ): JSX.Element | null => { if ( ! SHOP_URL ) { return null; } return (
); }; export default Block;