this.onClose() }
className="woocommerce-cart-modal"
>
{ this.renderProducts() }
{ __(
"You won't have access to this functionality until the extensions have been purchased and installed.",
'woocommerce-admin'
) }
);
}
}
export default compose(
withSelect( select => {
const { getProfileItems } = select( 'wc-api' );
const profileItems = getProfileItems();
const productIds = getProductIdsForCart( profileItems );
return { profileItems, productIds };
} )
)( CartModal );