0.0.2 • Published 3 years ago

jl-product-card-react-ts v0.0.2

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

JL-Product-Card

Este es un paquete de pruebas de despliegue en NPM

Jerónimo Ledesma

Ejemplo

import {ProductCard,ProductImage,ProductTitle,ProductButtons} from 'jl-product-card';
  <ProductCard
              product={product}
              initialValue={{
                count:4,
                maxCount:10
              }}
              >
                {
                  ({reset,increaseBy,isMaxCountReached,count}) => (
                    <>
                     <ProductCard.Image />
                     <ProductCard.Title title={'Holamundo'} />
                     <ProductCard.Buttons  />
                  
                    </>
                  )
                }
             
            </ProductCard>