Skip to content

Bsshark/adlg-product-card

Repository files navigation

ADLG-Product-Card

Paquete de pruebas de despliegue de NPM

Abraham

import { ProductCard, ProductImage, ProductTitle, ProductButtons } from 'ADLG-Product-Card';
<ProductCard
  product={product}
  initialValues={{
    quantity: 4,
    maxQuantity: 10,
  }}
>
  {({ reset, increaseBy, isMaxCountReached, count }) => (
    <>
      <ProductImage />
      <ProductTitle />
      <ProductButtons />
    </>
  )}
</ProductCard>