1.0.0-rc • Published 2 years ago

alejandroc-product-card v1.0.0-rc

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

alejandroc-product-card

Ejemplos

import { ProductButtons,ProductImage,ProductTitle,ProductCard } from 'alejandroc-product-card';
<ProductCard 
    product={producto} 
    initialValues={{
        count: 4,
        maxCount: 10,
    }}
>
    {
        ({count,increaseBy,isMaxCountReached,product,reset,maxCount}) => (

            <>
                <ProductImage/>
                <ProductTitle/>
                <ProductButtons/>
            </>

        )
    }

</ProductCard>