Skip to content

Kevin-Illu/product-card-react-patterns

Repository files navigation

Product Card

instalacion de paquete

npm i product-card-react-patterns

Ejemplo de uso

import {
  ProductCard
  ProductImage,
  ProductTitle,
  ProductButtons
} from 'product-card-react-patterns'
  <ProductCard
    product={product}
    initialValues={{
      count: 7,
      maxCount: 10,
    }}
  >
  {({ reset, count, increaseBy, isMaxCountReached, maxCount }) => (
    <>
      <ProductCard.Image />
      <ProductCard.Title />
      <ProductCard.Buttons />
    </>
  )}
  </ProductCard>