File "block.tsx"

Full Path: /home/warrior1/public_html/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/block.tsx
File size: 325 bytes
MIME-type: text/x-java
Charset: utf-8

/**
 * External dependencies
 */

/**
 * Internal dependencies
 */
import './inner-blocks/register-components';

type MiniCartContentsBlockProps = {
	children: JSX.Element | JSX.Element[];
};

export const MiniCartContentsBlock = ( {
	children,
}: MiniCartContentsBlockProps ): JSX.Element => {
	return <>{ children }</>;
};