/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { DISPLAY_CART_PRICES_INCLUDING_TAX } from '@woocommerce/block-settings'; import PropTypes from 'prop-types'; /** * Internal dependencies */ import TotalsItem from '../item'; const Subtotal = ( { currency, values, className } ) => { const { total_items: totalItems, total_items_tax: totalItemsTax } = values; const itemsValue = parseInt( totalItems, 10 ); const itemsTaxValue = parseInt( totalItemsTax, 10 ); return ( ); }; Subtotal.propTypes = { currency: PropTypes.object.isRequired, values: PropTypes.shape( { total_items: PropTypes.string, total_items_tax: PropTypes.string, } ).isRequired, className: PropTypes.string, }; export default Subtotal;