1.0.0-rc • Published 8 months ago

mb-product-card-test v1.0.0-rc

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

MB-Product-Card-Test

Este es un paquete de pruebas de despliegue en NPM

Autor:

Matias Barisone

Ejemplo

import { ProductImage, ProductTitle, ProductCard, ProductButtons } from '????';
<ProductCard
    product={product}
    inicialValues={{ count: 4, maxCount: 10 }}
>
    {
        ({ reset, increaseBy, count, isMaxCountReached, maxCount}) => (
            <>
                <ProductImage />
                <ProductTitle />
                <ProductButtons  />
            </>
        )
    }

</ProductCard>