├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── App.test.js ├── components ├── Allproducts.js ├── Cart.js ├── Footer.js ├── Navbar.js ├── Product.js └── all-products │ └── index.js ├── index.css ├── index.js ├── logo.svg ├── serviceWorker.js └── setupTests.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krofax/E-Commerce-Store-with-GraphCMS-and-React/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krofax/E-Commerce-Store-with-GraphCMS-and-React/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krofax/E-Commerce-Store-with-GraphCMS-and-React/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krofax/E-Commerce-Store-with-GraphCMS-and-React/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krofax/E-Commerce-Store-with-GraphCMS-and-React/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krofax/E-Commerce-Store-with-GraphCMS-and-React/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krofax/E-Commerce-Store-with-GraphCMS-and-React/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krofax/E-Commerce-Store-with-GraphCMS-and-React/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krofax/E-Commerce-Store-with-GraphCMS-and-React/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krofax/E-Commerce-Store-with-GraphCMS-and-React/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krofax/E-Commerce-Store-with-GraphCMS-and-React/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krofax/E-Commerce-Store-with-GraphCMS-and-React/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/components/Allproducts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krofax/E-Commerce-Store-with-GraphCMS-and-React/HEAD/src/components/Allproducts.js -------------------------------------------------------------------------------- /src/components/Cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krofax/E-Commerce-Store-with-GraphCMS-and-React/HEAD/src/components/Cart.js -------------------------------------------------------------------------------- /src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krofax/E-Commerce-Store-with-GraphCMS-and-React/HEAD/src/components/Footer.js -------------------------------------------------------------------------------- /src/components/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krofax/E-Commerce-Store-with-GraphCMS-and-React/HEAD/src/components/Navbar.js -------------------------------------------------------------------------------- /src/components/Product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krofax/E-Commerce-Store-with-GraphCMS-and-React/HEAD/src/components/Product.js -------------------------------------------------------------------------------- /src/components/all-products/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krofax/E-Commerce-Store-with-GraphCMS-and-React/HEAD/src/components/all-products/index.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krofax/E-Commerce-Store-with-GraphCMS-and-React/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krofax/E-Commerce-Store-with-GraphCMS-and-React/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krofax/E-Commerce-Store-with-GraphCMS-and-React/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krofax/E-Commerce-Store-with-GraphCMS-and-React/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krofax/E-Commerce-Store-with-GraphCMS-and-React/HEAD/src/setupTests.js --------------------------------------------------------------------------------