├── .github ├── stale.yml └── workflows │ └── test.yml ├── .gitignore ├── README.md ├── css └── style.css ├── index.html └── src └── index.js /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironhack-labs/lab-dom-ironhack-cart/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironhack-labs/lab-dom-ironhack-cart/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironhack-labs/lab-dom-ironhack-cart/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironhack-labs/lab-dom-ironhack-cart/HEAD/README.md -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironhack-labs/lab-dom-ironhack-cart/HEAD/css/style.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironhack-labs/lab-dom-ironhack-cart/HEAD/index.html -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironhack-labs/lab-dom-ironhack-cart/HEAD/src/index.js --------------------------------------------------------------------------------