1.0.0-rc • Published 2 years ago

lcm-product-card v1.0.0-rc

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

LCM-PRODUCT-CARD

Paquete de pruebas de despliegue de NPM

Ejemplo Leandro Cristiano

Ejemplo

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