0.0.1 • Published 2 years ago

ayo-product-card v0.0.1

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

ayo-product-card

Este es un paquete de pruebas de despligete en NPM

Ayoze.Ferraz

Ejemplo

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