├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.js ├── components ├── Cart.jsx ├── Header.jsx └── Home.jsx ├── index.js ├── redux ├── reducers.js └── store.js └── styles ├── app.scss ├── cart.scss ├── colors.scss ├── header.scss ├── home.scss └── mediaquery.scss /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/react-cart/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/react-cart/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/react-cart/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/react-cart/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/react-cart/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/react-cart/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/react-cart/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/react-cart/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/react-cart/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/react-cart/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/Cart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/react-cart/HEAD/src/components/Cart.jsx -------------------------------------------------------------------------------- /src/components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/react-cart/HEAD/src/components/Header.jsx -------------------------------------------------------------------------------- /src/components/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/react-cart/HEAD/src/components/Home.jsx -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/react-cart/HEAD/src/index.js -------------------------------------------------------------------------------- /src/redux/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/react-cart/HEAD/src/redux/reducers.js -------------------------------------------------------------------------------- /src/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/react-cart/HEAD/src/redux/store.js -------------------------------------------------------------------------------- /src/styles/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/react-cart/HEAD/src/styles/app.scss -------------------------------------------------------------------------------- /src/styles/cart.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/react-cart/HEAD/src/styles/cart.scss -------------------------------------------------------------------------------- /src/styles/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/react-cart/HEAD/src/styles/colors.scss -------------------------------------------------------------------------------- /src/styles/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/react-cart/HEAD/src/styles/header.scss -------------------------------------------------------------------------------- /src/styles/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/react-cart/HEAD/src/styles/home.scss -------------------------------------------------------------------------------- /src/styles/mediaquery.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/react-cart/HEAD/src/styles/mediaquery.scss --------------------------------------------------------------------------------