0.1.1 • Published 3 years ago

fh-product-card v0.1.1

Weekly downloads
-
License
-
Repository
-
Last release
3 years ago

FH-ProductCard

Este es un paquete de pruebas de despliegues en NPM

Importaciones

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