1.0.0-rc • Published 2 years ago

icf-product-cart v1.0.0-rc

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

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>