0.0.2 • Published 2 years ago

mw-product-card v0.0.2

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

Matias Walter

Parte del curso de React PRO de Fernando Herrera

Ejemplo

  import {
    ProductCard,
    ProductImage,
    ProductTitle,
    ProductButtons
  } from 'mw-product-card';
  <ProductCard 
    product={product}
    initialValues={{
      count: 4,
      maxCount: 10
    }}
  >
    {({ reset, increaseBy, isMaxCountReached, count, maxCount }) => (
      <>
        <ProductImage />
        <ProductTitle />
        <ProductButtons />
      </>
    )}
  </ProductCard>