const PriceInCart = ({ items }) => { const totalPrice = items.reduce((sum, item) => sum + item.price, 0); return (
); }; export default PriceInCart;