1.0.2-rc • Published 2 years ago

abam-product-card v1.0.2-rc

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

ABAM-Product-Card

Este es un paquete de pruebas de despliegues en NPM

Abel Amieva

Ejemplo

import { ProductCard, ProductImage, ProductTitle, ProductButtons } from 'abam-product-card';
    <ProductCard 
        product={ product }
        initialValues={{ // podemos inicializar la tarjeta 
            count: 4,
            maxCount: 8,
        }}
    >
        {
            ({reset, count, isMaxCountReached, maxCount, increaseBy})=>(

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

                </>

            )
        }
    </ProductCard>