├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── public ├── favicon.ico ├── img │ ├── product-1.png │ ├── product-2.png │ ├── product-3.png │ ├── product-4.png │ ├── product-5.png │ ├── product-6.png │ ├── product-7.png │ └── product-8.png ├── index.html └── manifest.json └── src ├── App.css ├── App.js ├── App.test.js ├── components ├── Button.js ├── Cart │ ├── Cart.js │ ├── CartColumns.js │ ├── CartItem.js │ ├── CartList.js │ ├── CartTotals.js │ ├── EmptyCart.js │ └── package.json ├── Default.js ├── Details.js ├── Modal.js ├── Navbar.js ├── Product.js ├── ProductList.js └── Title.js ├── context.js ├── data.js ├── img ├── 171358083.jpg ├── product-1.png ├── product-2.png ├── product-3.png ├── product-4.png ├── product-5.png ├── product-6.png ├── product-7.png └── product-8.png ├── index.css ├── index.js ├── logo.svg └── serviceWorker.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/img/product-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/public/img/product-1.png -------------------------------------------------------------------------------- /public/img/product-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/public/img/product-2.png -------------------------------------------------------------------------------- /public/img/product-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/public/img/product-3.png -------------------------------------------------------------------------------- /public/img/product-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/public/img/product-4.png -------------------------------------------------------------------------------- /public/img/product-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/public/img/product-5.png -------------------------------------------------------------------------------- /public/img/product-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/public/img/product-6.png -------------------------------------------------------------------------------- /public/img/product-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/public/img/product-7.png -------------------------------------------------------------------------------- /public/img/product-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/public/img/product-8.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/components/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/src/components/Button.js -------------------------------------------------------------------------------- /src/components/Cart/Cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/src/components/Cart/Cart.js -------------------------------------------------------------------------------- /src/components/Cart/CartColumns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/src/components/Cart/CartColumns.js -------------------------------------------------------------------------------- /src/components/Cart/CartItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/src/components/Cart/CartItem.js -------------------------------------------------------------------------------- /src/components/Cart/CartList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/src/components/Cart/CartList.js -------------------------------------------------------------------------------- /src/components/Cart/CartTotals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/src/components/Cart/CartTotals.js -------------------------------------------------------------------------------- /src/components/Cart/EmptyCart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/src/components/Cart/EmptyCart.js -------------------------------------------------------------------------------- /src/components/Cart/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main":"Cart.js" 3 | } -------------------------------------------------------------------------------- /src/components/Default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/src/components/Default.js -------------------------------------------------------------------------------- /src/components/Details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/src/components/Details.js -------------------------------------------------------------------------------- /src/components/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/src/components/Modal.js -------------------------------------------------------------------------------- /src/components/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/src/components/Navbar.js -------------------------------------------------------------------------------- /src/components/Product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/src/components/Product.js -------------------------------------------------------------------------------- /src/components/ProductList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/src/components/ProductList.js -------------------------------------------------------------------------------- /src/components/Title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/src/components/Title.js -------------------------------------------------------------------------------- /src/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/src/context.js -------------------------------------------------------------------------------- /src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/src/data.js -------------------------------------------------------------------------------- /src/img/171358083.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/src/img/171358083.jpg -------------------------------------------------------------------------------- /src/img/product-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/src/img/product-1.png -------------------------------------------------------------------------------- /src/img/product-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/src/img/product-2.png -------------------------------------------------------------------------------- /src/img/product-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/src/img/product-3.png -------------------------------------------------------------------------------- /src/img/product-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/src/img/product-4.png -------------------------------------------------------------------------------- /src/img/product-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/src/img/product-5.png -------------------------------------------------------------------------------- /src/img/product-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/src/img/product-6.png -------------------------------------------------------------------------------- /src/img/product-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/src/img/product-7.png -------------------------------------------------------------------------------- /src/img/product-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/src/img/product-8.png -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMaster0099/eco-shop/HEAD/src/serviceWorker.js --------------------------------------------------------------------------------