1.0.0-rc • Published 8 months ago

do-product-card-package v1.0.0-rc

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

Do product card package

Este es un paquete de pruebas de despliegue en NPM.

Ejemplo

import {
  ProductCard,
  ProductImage,
  ProductTitle,
  ProductButtons,
} from 'do-product-card-package';
<ProductCard
  product={productElement}
  initialValues={{
    quantity: 4,
    maxQuantity: 10,
  }}
>
  {/* pasar una función como un children y esta función retorna un JSX Element */}
  {({ reset }) => (
    <>
      <ProductImage />
      <ProductTitle />
      <ProductButtons />

      <button onClick={reset}>Reset</button>
    </>
  )}
</ProductCard>
1.0.0-rc

8 months ago

0.0.1

8 months ago