0.0.2 • Published 2 years ago

jra-product-card v0.0.2

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

jr-product-card

Este es un paquete de pruebas de despliegue en NPM

Javier Rojas

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