1.0.0-rc • Published 3 years ago

wol-product-card v1.0.0-rc

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

Wol-product-card

Es un paquete de pruebas de deploy en NPM

Example

import {
    ProductCard,
    ProductImage,
    ProductTitle,
    ProductButtons,
} "from wol-product-card";
<ProductCard
  key={product.id}
  product={product}
  initialValues={{
    count: 2,
    maxCount: 12,
  }}
>
  {({ reset, isMaxCounterReached, maxCount, count, increaseBy }) => (
    <>
      <ProductImage />
      <ProductTitle title={'Custom Mug'} />
      <ProductButtons />
    </>
  )}
</ProductCard>