├── .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 │ ├── Cart.js │ ├── Loading.js │ └── Navbar.js ├── context │ └── shopContext.js ├── index.css ├── index.js ├── pages │ ├── HomePage.js │ └── ProductPage.js ├── serviceWorker.js └── setupTests.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/shopify-react/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/shopify-react/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/shopify-react/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/shopify-react/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/shopify-react/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/shopify-react/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/shopify-react/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/shopify-react/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/shopify-react/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/shopify-react/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/shopify-react/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/shopify-react/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/components/Cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/shopify-react/HEAD/src/components/Cart.js -------------------------------------------------------------------------------- /src/components/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/shopify-react/HEAD/src/components/Loading.js -------------------------------------------------------------------------------- /src/components/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/shopify-react/HEAD/src/components/Navbar.js -------------------------------------------------------------------------------- /src/context/shopContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/shopify-react/HEAD/src/context/shopContext.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/shopify-react/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/shopify-react/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/HomePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/shopify-react/HEAD/src/pages/HomePage.js -------------------------------------------------------------------------------- /src/pages/ProductPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/shopify-react/HEAD/src/pages/ProductPage.js -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/shopify-react/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/shopify-react/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamelimars/shopify-react/HEAD/yarn.lock --------------------------------------------------------------------------------