1.0.0-rc • Published 2 years ago

sg-product-card v1.0.0-rc

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

SG-Product-Card

Paquete de pruebas de despliegue en NPM

Ejemplo

import {ProductCard, ProductImage, ProductTitle, ProductButtons} from 'sg-product-card';
<ProductCard 
    product={product}
    key={product.id}
    initialValues={{
        count: 6,
        // maxCount: 10
    }}
>
    {
        ({reset, increaseBy, maxCount, count, isMaxCountReached}) => (
            <>
              <ProductImage />
              <ProductTitle />
              <ProductButtons />
            </>
         )
    }        
</ProductCard>