0.0.2 • Published 2 years ago

vilo-product-card v0.0.2

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

Vilo-Product-Card

Este es un paquete de pruebas de despliegue en NPM

Edgard Vilo

Ejemplo

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