├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json ├── products.JSON └── robots.txt └── src ├── App.css ├── App.js ├── App.test.js ├── Components ├── Cart │ ├── Cart.css │ └── Cart.js ├── Header │ ├── Header.css │ └── Header.js ├── Product │ ├── Product.css │ └── Product.js └── Shop │ ├── Shop.css │ └── Shop.js ├── fakeData └── products.JSON ├── images ├── favicon.ico ├── giphy.gif └── logo.png ├── index.css ├── index.js ├── logo.svg ├── reportWebVitals.js ├── setupTests.js └── utilities └── fakedb.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifulsajib/ecommerce-project-react/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifulsajib/ecommerce-project-react/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifulsajib/ecommerce-project-react/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifulsajib/ecommerce-project-react/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifulsajib/ecommerce-project-react/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifulsajib/ecommerce-project-react/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifulsajib/ecommerce-project-react/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifulsajib/ecommerce-project-react/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/products.JSON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifulsajib/ecommerce-project-react/HEAD/public/products.JSON -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifulsajib/ecommerce-project-react/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifulsajib/ecommerce-project-react/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifulsajib/ecommerce-project-react/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/Components/Cart/Cart.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Components/Cart/Cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifulsajib/ecommerce-project-react/HEAD/src/Components/Cart/Cart.js -------------------------------------------------------------------------------- /src/Components/Header/Header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifulsajib/ecommerce-project-react/HEAD/src/Components/Header/Header.css -------------------------------------------------------------------------------- /src/Components/Header/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifulsajib/ecommerce-project-react/HEAD/src/Components/Header/Header.js -------------------------------------------------------------------------------- /src/Components/Product/Product.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifulsajib/ecommerce-project-react/HEAD/src/Components/Product/Product.css -------------------------------------------------------------------------------- /src/Components/Product/Product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifulsajib/ecommerce-project-react/HEAD/src/Components/Product/Product.js -------------------------------------------------------------------------------- /src/Components/Shop/Shop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifulsajib/ecommerce-project-react/HEAD/src/Components/Shop/Shop.css -------------------------------------------------------------------------------- /src/Components/Shop/Shop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifulsajib/ecommerce-project-react/HEAD/src/Components/Shop/Shop.js -------------------------------------------------------------------------------- /src/fakeData/products.JSON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifulsajib/ecommerce-project-react/HEAD/src/fakeData/products.JSON -------------------------------------------------------------------------------- /src/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifulsajib/ecommerce-project-react/HEAD/src/images/favicon.ico -------------------------------------------------------------------------------- /src/images/giphy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifulsajib/ecommerce-project-react/HEAD/src/images/giphy.gif -------------------------------------------------------------------------------- /src/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifulsajib/ecommerce-project-react/HEAD/src/images/logo.png -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifulsajib/ecommerce-project-react/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifulsajib/ecommerce-project-react/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifulsajib/ecommerce-project-react/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifulsajib/ecommerce-project-react/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifulsajib/ecommerce-project-react/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/utilities/fakedb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arifulsajib/ecommerce-project-react/HEAD/src/utilities/fakedb.js --------------------------------------------------------------------------------