1.0.0-rc • Published 2 years ago

cm-product-card-fhud v1.0.0-rc

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

cm-product-card-fhud

Este es un paquete de pruebas de despliegue en npm

Castro Maciel 2022

Ejemplo

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