/** * Internal dependencies */ import CheckoutButton from './checkout-button'; import './style.scss'; /** * Component that renders the Cart block when user has something in cart aka "full". */ const Cart = () => { return (
Cart block full state coming soon…
); }; Cart.propTypes = {}; export default Cart;