0.1.0 • Published 4 months ago
e-commerce-cart v0.1.0
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>
);
};
0.1.0
4 months ago