├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── app └── store.js ├── components ├── Navbar.js ├── ProductCard.js └── cartPage.js ├── features └── cartSlice.js ├── index.css ├── index.js └── productData.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/shoppingcart-using-redux-toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/shoppingcart-using-redux-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/shoppingcart-using-redux-toolkit/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/shoppingcart-using-redux-toolkit/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/shoppingcart-using-redux-toolkit/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/shoppingcart-using-redux-toolkit/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/shoppingcart-using-redux-toolkit/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/shoppingcart-using-redux-toolkit/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/shoppingcart-using-redux-toolkit/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/shoppingcart-using-redux-toolkit/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/shoppingcart-using-redux-toolkit/HEAD/src/App.js -------------------------------------------------------------------------------- /src/app/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/shoppingcart-using-redux-toolkit/HEAD/src/app/store.js -------------------------------------------------------------------------------- /src/components/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/shoppingcart-using-redux-toolkit/HEAD/src/components/Navbar.js -------------------------------------------------------------------------------- /src/components/ProductCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/shoppingcart-using-redux-toolkit/HEAD/src/components/ProductCard.js -------------------------------------------------------------------------------- /src/components/cartPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/shoppingcart-using-redux-toolkit/HEAD/src/components/cartPage.js -------------------------------------------------------------------------------- /src/features/cartSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/shoppingcart-using-redux-toolkit/HEAD/src/features/cartSlice.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/shoppingcart-using-redux-toolkit/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/shoppingcart-using-redux-toolkit/HEAD/src/index.js -------------------------------------------------------------------------------- /src/productData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/shoppingcart-using-redux-toolkit/HEAD/src/productData.js --------------------------------------------------------------------------------