0.0.2 • Published 2 years ago

pma-product-card v0.0.2

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

Pma - Product Card

Paquete de test de deploy en NPM

Pablo Ariata

Ejemplo

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