1.0.0-rc • Published 2 years ago

tc-product-card v1.0.0-rc

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

tr-product-card

Este es un paquete npm de pruebas

Thomas Carreno

Ejemplo

import{
  ProductImage,
  ProductTitle,
  ProductButton,
  ProductCard
  }from'do-product-card';
<ProductCard
product={product}
initialValue={{
          count: 4,
          maxCount: 10,
        }} >
{({ count, isMaxReached, maxCount, product, increasBy, reset }) => (
<>
<ProductImage />
<ProductTitle />
<ProductButton />
</>
)}
</ProductCard>