- Create a list of products and a shopping cart saving in LocalStorage
- List Products Page with all the products;
- Cart Modal with the products added to the cart;
const products = [{
name: "Sledgehammer",
price: 125.75
}, {
name: "Axe",
price: 190.50
}, {
name: "Bandsaw",
price: 562.13
}, {
name: "Chisel",
price: 12.9
}, {
name: "Hacksaw",
price: 18.45
} ]
Clone the project into your computer, access the folder of the clonned repository in your terminal and execute npm install or yarn to install all the packages, than execute yarn start.
