0.1.0 • Published 2 years ago

lna-product-card v0.1.0

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

LNA-Product-Card

Este es un paquete de pruebas de despliegue en npm.

Ejemplo:

import { ProductButtons, ProductCard, ProductImage, ProductTitle } from 'lna-product-card';
<ProductCard 
    product={product}
    initialValues={{
        quantity: 5,
        maxQuantity: 7,
    }}
>
    {
        ({ reset, quantity, increaseBy, isMaxQuantity }) => (
            <>
                <ProductImage />  
                <ProductTitle />
                <ProductButtons />
            </>
        )
    }
</ProductCard>

Made with ❤️ by Leandro Arturi.