icf-product-cart
v1.0.0-rc
Published
This is a test package deployed in NPM.
Downloads
1
Maintainers
Readme
ICF-ProductCart
This is a test package deployed in NPM.
Igor Chinchay Farroñay
Example
import { ProductCard, ProductImage, ProductTitle, ProductButtons } from 'icf-product-cart';
<ProductCard
product={product}
initialValues={{
count: 4,
maxCount: 10,
}}
>
{({ count, reset, isMaxCountReached, increaseBy }) => (
<>
<ProductCard.Image />
<ProductCard.Title />
<ProductCard.Buttons />
</>
)}
</ProductCard>