0.1.0 • Published 2 years ago

abm-product-card v0.1.0

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

ABM-Product-Card

Este es un paquete de pruebas de despliegue en NPM

Alan Beltrán

Ejemplo

  <ProductCard
    product={product}
    initialValues={{
      count: 4,
      maxCount: 10,
    }}
  >
    {({ reset, count, isMaxCountReached, maxCount, increaseBy }) => (
      <>
        <ProductImage img={product.img} />
        <ProductTitle />
        <ProductButtons />
      </>
    )}
  </ProductCard>