├── .env.example ├── .gitignore ├── README.md ├── package.json ├── public ├── images │ ├── hats.png │ ├── jackets.png │ ├── men.png │ ├── shop-img │ │ ├── hats │ │ │ ├── blue-beanie.png │ │ │ ├── blue-snapback.png │ │ │ ├── brown-brim.png │ │ │ ├── brown-cowboy.png │ │ │ ├── green-beanie.png │ │ │ ├── grey-brim.png │ │ │ ├── palm-tree-cap.png │ │ │ ├── red-beanie.png │ │ │ └── wolf-cap.png │ │ ├── jackets │ │ │ ├── black-shearling.png │ │ │ ├── blue-jean-jacket.png │ │ │ ├── brown-shearling.png │ │ │ ├── brown-trench.png │ │ │ └── grey-jean-jacket.png │ │ ├── mens │ │ │ ├── camo-vest.png │ │ │ ├── floral-shirt.png │ │ │ ├── long-sleeve.png │ │ │ ├── pink-shirt.png │ │ │ ├── polka-dot-shirt.png │ │ │ └── roll-up-jean-shirt.png │ │ ├── sneakers │ │ │ ├── adidas-nmd.png │ │ │ ├── black-converse.png │ │ │ ├── nike-brown.png │ │ │ ├── nike-funky.png │ │ │ ├── nikes-red.png │ │ │ ├── timberlands.png │ │ │ ├── white-nike-high-tops.png │ │ │ └── yeezy.png │ │ └── womens │ │ │ ├── blue-tank.png │ │ │ ├── floral-blouse.png │ │ │ ├── floral-skirt.png │ │ │ ├── red-polka-dot-dress.png │ │ │ ├── striped-sweater.png │ │ │ ├── white-vest.png │ │ │ └── yellow-track-suit.png │ ├── sneakers.png │ └── womens.png ├── index.html └── original.ico └── src ├── App.css ├── App.js ├── App.test.js ├── assets ├── crown.svg └── shopping-bag.svg ├── components ├── cart-dropdown │ ├── cart-dropdown.component.jsx │ └── cart-dropdown.styles.scss ├── cart-icon │ ├── cart-icon.component.jsx │ └── cart-icon.styles.scss ├── cart-item │ ├── cart-item.component.jsx │ └── cart-item.styles.scss ├── checkout-item │ ├── checkout-item.component.jsx │ └── checkout-item.styles.scss ├── collection-item │ ├── collection-item.component.jsx │ └── collection-item.styles.scss ├── collection-overview │ ├── collection-overview.component.jsx │ └── collection-overview.styles.scss ├── collection-preview │ ├── collection-preview.component.jsx │ └── collection-preview.styles.scss ├── custom-button │ ├── custom-button.component.jsx │ └── custom-button.styles.scss ├── directory │ ├── directory.component.jsx │ └── directory.styles.scss ├── form-input │ ├── form-input.component.jsx │ └── form-input.styles.scss ├── header │ ├── header.component.jsx │ └── header.styles.scss ├── menu-item │ ├── menu-item.component.jsx │ └── menu-item.styles.scss ├── sign-in │ ├── sign-in.component.jsx │ └── sign-in.styles.scss ├── sign-up │ ├── sign-up.component.jsx │ └── sign-up.styles.scss └── stripe-button │ └── stripe-button.component.jsx ├── firebase └── firebase.utils.js ├── index.css ├── index.js ├── pages ├── checkout │ ├── checkout.component.jsx │ └── checkout.styles.scss ├── collection │ ├── collection.component.jsx │ └── collection.styles.scss ├── homepage │ ├── homepage.component.jsx │ └── homepage.styles.scss ├── shop │ └── shop.component.jsx └── sign-in-and-sign-up │ ├── sign-in-and-sign-up.component.js │ └── sign-in-and-sign-up.styles.scss └── redux ├── cart ├── cart.actions.js ├── cart.reducer.js ├── cart.selector.js ├── cart.types.js └── cart.utils.js ├── directory ├── directory.reducer.js └── directory.selectors.js ├── root-reducer.js ├── shop ├── shop.data.js ├── shop.reducer.js └── shop.selectors.js ├── store.js └── user ├── user.actions.js ├── user.reducer.js ├── user.selector.js └── user.types.js /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/package.json -------------------------------------------------------------------------------- /public/images/hats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/hats.png -------------------------------------------------------------------------------- /public/images/jackets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/jackets.png -------------------------------------------------------------------------------- /public/images/men.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/men.png -------------------------------------------------------------------------------- /public/images/shop-img/hats/blue-beanie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/shop-img/hats/blue-beanie.png -------------------------------------------------------------------------------- /public/images/shop-img/hats/blue-snapback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/shop-img/hats/blue-snapback.png -------------------------------------------------------------------------------- /public/images/shop-img/hats/brown-brim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/shop-img/hats/brown-brim.png -------------------------------------------------------------------------------- /public/images/shop-img/hats/brown-cowboy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/shop-img/hats/brown-cowboy.png -------------------------------------------------------------------------------- /public/images/shop-img/hats/green-beanie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/shop-img/hats/green-beanie.png -------------------------------------------------------------------------------- /public/images/shop-img/hats/grey-brim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/shop-img/hats/grey-brim.png -------------------------------------------------------------------------------- /public/images/shop-img/hats/palm-tree-cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/shop-img/hats/palm-tree-cap.png -------------------------------------------------------------------------------- /public/images/shop-img/hats/red-beanie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/shop-img/hats/red-beanie.png -------------------------------------------------------------------------------- /public/images/shop-img/hats/wolf-cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/shop-img/hats/wolf-cap.png -------------------------------------------------------------------------------- /public/images/shop-img/jackets/black-shearling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/shop-img/jackets/black-shearling.png -------------------------------------------------------------------------------- /public/images/shop-img/jackets/blue-jean-jacket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/shop-img/jackets/blue-jean-jacket.png -------------------------------------------------------------------------------- /public/images/shop-img/jackets/brown-shearling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/shop-img/jackets/brown-shearling.png -------------------------------------------------------------------------------- /public/images/shop-img/jackets/brown-trench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/shop-img/jackets/brown-trench.png -------------------------------------------------------------------------------- /public/images/shop-img/jackets/grey-jean-jacket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/shop-img/jackets/grey-jean-jacket.png -------------------------------------------------------------------------------- /public/images/shop-img/mens/camo-vest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/shop-img/mens/camo-vest.png -------------------------------------------------------------------------------- /public/images/shop-img/mens/floral-shirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/shop-img/mens/floral-shirt.png -------------------------------------------------------------------------------- /public/images/shop-img/mens/long-sleeve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/shop-img/mens/long-sleeve.png -------------------------------------------------------------------------------- /public/images/shop-img/mens/pink-shirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/shop-img/mens/pink-shirt.png -------------------------------------------------------------------------------- /public/images/shop-img/mens/polka-dot-shirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/shop-img/mens/polka-dot-shirt.png -------------------------------------------------------------------------------- /public/images/shop-img/mens/roll-up-jean-shirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/shop-img/mens/roll-up-jean-shirt.png -------------------------------------------------------------------------------- /public/images/shop-img/sneakers/adidas-nmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/shop-img/sneakers/adidas-nmd.png -------------------------------------------------------------------------------- /public/images/shop-img/sneakers/black-converse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/shop-img/sneakers/black-converse.png -------------------------------------------------------------------------------- /public/images/shop-img/sneakers/nike-brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/shop-img/sneakers/nike-brown.png -------------------------------------------------------------------------------- /public/images/shop-img/sneakers/nike-funky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/shop-img/sneakers/nike-funky.png -------------------------------------------------------------------------------- /public/images/shop-img/sneakers/nikes-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/shop-img/sneakers/nikes-red.png -------------------------------------------------------------------------------- /public/images/shop-img/sneakers/timberlands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/shop-img/sneakers/timberlands.png -------------------------------------------------------------------------------- /public/images/shop-img/sneakers/white-nike-high-tops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/shop-img/sneakers/white-nike-high-tops.png -------------------------------------------------------------------------------- /public/images/shop-img/sneakers/yeezy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/shop-img/sneakers/yeezy.png -------------------------------------------------------------------------------- /public/images/shop-img/womens/blue-tank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/shop-img/womens/blue-tank.png -------------------------------------------------------------------------------- /public/images/shop-img/womens/floral-blouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/shop-img/womens/floral-blouse.png -------------------------------------------------------------------------------- /public/images/shop-img/womens/floral-skirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/shop-img/womens/floral-skirt.png -------------------------------------------------------------------------------- /public/images/shop-img/womens/red-polka-dot-dress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/shop-img/womens/red-polka-dot-dress.png -------------------------------------------------------------------------------- /public/images/shop-img/womens/striped-sweater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/shop-img/womens/striped-sweater.png -------------------------------------------------------------------------------- /public/images/shop-img/womens/white-vest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/shop-img/womens/white-vest.png -------------------------------------------------------------------------------- /public/images/shop-img/womens/yellow-track-suit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/shop-img/womens/yellow-track-suit.png -------------------------------------------------------------------------------- /public/images/sneakers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/sneakers.png -------------------------------------------------------------------------------- /public/images/womens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/images/womens.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/index.html -------------------------------------------------------------------------------- /public/original.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/public/original.ico -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/assets/crown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/assets/crown.svg -------------------------------------------------------------------------------- /src/assets/shopping-bag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/assets/shopping-bag.svg -------------------------------------------------------------------------------- /src/components/cart-dropdown/cart-dropdown.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/components/cart-dropdown/cart-dropdown.component.jsx -------------------------------------------------------------------------------- /src/components/cart-dropdown/cart-dropdown.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/components/cart-dropdown/cart-dropdown.styles.scss -------------------------------------------------------------------------------- /src/components/cart-icon/cart-icon.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/components/cart-icon/cart-icon.component.jsx -------------------------------------------------------------------------------- /src/components/cart-icon/cart-icon.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/components/cart-icon/cart-icon.styles.scss -------------------------------------------------------------------------------- /src/components/cart-item/cart-item.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/components/cart-item/cart-item.component.jsx -------------------------------------------------------------------------------- /src/components/cart-item/cart-item.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/components/cart-item/cart-item.styles.scss -------------------------------------------------------------------------------- /src/components/checkout-item/checkout-item.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/components/checkout-item/checkout-item.component.jsx -------------------------------------------------------------------------------- /src/components/checkout-item/checkout-item.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/components/checkout-item/checkout-item.styles.scss -------------------------------------------------------------------------------- /src/components/collection-item/collection-item.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/components/collection-item/collection-item.component.jsx -------------------------------------------------------------------------------- /src/components/collection-item/collection-item.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/components/collection-item/collection-item.styles.scss -------------------------------------------------------------------------------- /src/components/collection-overview/collection-overview.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/components/collection-overview/collection-overview.component.jsx -------------------------------------------------------------------------------- /src/components/collection-overview/collection-overview.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/components/collection-overview/collection-overview.styles.scss -------------------------------------------------------------------------------- /src/components/collection-preview/collection-preview.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/components/collection-preview/collection-preview.component.jsx -------------------------------------------------------------------------------- /src/components/collection-preview/collection-preview.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/components/collection-preview/collection-preview.styles.scss -------------------------------------------------------------------------------- /src/components/custom-button/custom-button.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/components/custom-button/custom-button.component.jsx -------------------------------------------------------------------------------- /src/components/custom-button/custom-button.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/components/custom-button/custom-button.styles.scss -------------------------------------------------------------------------------- /src/components/directory/directory.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/components/directory/directory.component.jsx -------------------------------------------------------------------------------- /src/components/directory/directory.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/components/directory/directory.styles.scss -------------------------------------------------------------------------------- /src/components/form-input/form-input.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/components/form-input/form-input.component.jsx -------------------------------------------------------------------------------- /src/components/form-input/form-input.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/components/form-input/form-input.styles.scss -------------------------------------------------------------------------------- /src/components/header/header.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/components/header/header.component.jsx -------------------------------------------------------------------------------- /src/components/header/header.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/components/header/header.styles.scss -------------------------------------------------------------------------------- /src/components/menu-item/menu-item.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/components/menu-item/menu-item.component.jsx -------------------------------------------------------------------------------- /src/components/menu-item/menu-item.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/components/menu-item/menu-item.styles.scss -------------------------------------------------------------------------------- /src/components/sign-in/sign-in.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/components/sign-in/sign-in.component.jsx -------------------------------------------------------------------------------- /src/components/sign-in/sign-in.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/components/sign-in/sign-in.styles.scss -------------------------------------------------------------------------------- /src/components/sign-up/sign-up.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/components/sign-up/sign-up.component.jsx -------------------------------------------------------------------------------- /src/components/sign-up/sign-up.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/components/sign-up/sign-up.styles.scss -------------------------------------------------------------------------------- /src/components/stripe-button/stripe-button.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/components/stripe-button/stripe-button.component.jsx -------------------------------------------------------------------------------- /src/firebase/firebase.utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/firebase/firebase.utils.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/checkout/checkout.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/pages/checkout/checkout.component.jsx -------------------------------------------------------------------------------- /src/pages/checkout/checkout.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/pages/checkout/checkout.styles.scss -------------------------------------------------------------------------------- /src/pages/collection/collection.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/pages/collection/collection.component.jsx -------------------------------------------------------------------------------- /src/pages/collection/collection.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/pages/collection/collection.styles.scss -------------------------------------------------------------------------------- /src/pages/homepage/homepage.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/pages/homepage/homepage.component.jsx -------------------------------------------------------------------------------- /src/pages/homepage/homepage.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/pages/homepage/homepage.styles.scss -------------------------------------------------------------------------------- /src/pages/shop/shop.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/pages/shop/shop.component.jsx -------------------------------------------------------------------------------- /src/pages/sign-in-and-sign-up/sign-in-and-sign-up.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/pages/sign-in-and-sign-up/sign-in-and-sign-up.component.js -------------------------------------------------------------------------------- /src/pages/sign-in-and-sign-up/sign-in-and-sign-up.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/pages/sign-in-and-sign-up/sign-in-and-sign-up.styles.scss -------------------------------------------------------------------------------- /src/redux/cart/cart.actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/redux/cart/cart.actions.js -------------------------------------------------------------------------------- /src/redux/cart/cart.reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/redux/cart/cart.reducer.js -------------------------------------------------------------------------------- /src/redux/cart/cart.selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/redux/cart/cart.selector.js -------------------------------------------------------------------------------- /src/redux/cart/cart.types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/redux/cart/cart.types.js -------------------------------------------------------------------------------- /src/redux/cart/cart.utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/redux/cart/cart.utils.js -------------------------------------------------------------------------------- /src/redux/directory/directory.reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/redux/directory/directory.reducer.js -------------------------------------------------------------------------------- /src/redux/directory/directory.selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/redux/directory/directory.selectors.js -------------------------------------------------------------------------------- /src/redux/root-reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/redux/root-reducer.js -------------------------------------------------------------------------------- /src/redux/shop/shop.data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/redux/shop/shop.data.js -------------------------------------------------------------------------------- /src/redux/shop/shop.reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/redux/shop/shop.reducer.js -------------------------------------------------------------------------------- /src/redux/shop/shop.selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/redux/shop/shop.selectors.js -------------------------------------------------------------------------------- /src/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/redux/store.js -------------------------------------------------------------------------------- /src/redux/user/user.actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/redux/user/user.actions.js -------------------------------------------------------------------------------- /src/redux/user/user.reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/redux/user/user.reducer.js -------------------------------------------------------------------------------- /src/redux/user/user.selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/redux/user/user.selector.js -------------------------------------------------------------------------------- /src/redux/user/user.types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roshan0708/React-ecommerce/HEAD/src/redux/user/user.types.js --------------------------------------------------------------------------------