0.0.1 • Published 2 years ago

cambar-product-card v0.0.1

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

DO-Product-Card

Test despligue paquete a NPM

JUlio

Ejemplo

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

            </ProductCard>