0.1.0 • Published 4 months ago

e-commerce-cart v0.1.0

Weekly downloads
-
License
ISC
Repository
-
Last release
4 months ago

Shopping Cart Component

Installation

npm install your-cart-component


import CartManager from 'your-cart-component';
import ProductList from 'your-cart-component';
import CartComponent from 'your-cart-component';

const App = () => {
  const { cart, addToCart, removeFromCart, changeQuantity } = CartManager();

  return (
    <div>
      <ProductList products={products} addToCart={addToCart} />
      <CartComponent cart={cart} removeFromCart={removeFromCart} changeQuantity={changeQuantity} />
    </div>
  );
};