Build a shopping cart that displays the total price when adding items. Implement the Add to Cart logic, add an item to the cart when the button is clicked. Implement the + and - buttons to add or remove items from the cart. Implement the total sum at the bottom of the page. ShoppingCart.js import { useState } from 'react' const items = [{ name: 'apple', price: 0.79 }, { name: 'banana', price: 0...