0.1.0 • Published 2 years ago

bimbo-product-card v0.1.0

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

bimbo-product-card

Este es un paquete de pruebas de despliegue en NPM

Ejemplo

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