/** * External dependencies */ import { previewCartItems } from '@woocommerce/resource-previews'; /** * Internal dependencies */ import CheckoutButton from './checkout-button'; import CartLineItemsTitle from './cart-line-items-title'; import CartLineItemsTable from './cart-line-items-table'; import './style.scss'; import './editor.scss'; /** * Component that renders the Cart block when user has something in cart aka "full". */ const Cart = () => { return (
); }; Cart.propTypes = {}; export default Cart;