0.0.1 • Published 11 months ago

jdmp-product-card v0.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

jdmp-product-card

Este es un paquete de prueba de despliegue NPM

Jesus Dario Marenco Porto

##Ejemplo

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