0.1.0 • Published 1 year ago

jimc-product-card v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

jimc-product-card

Este es un paquete de prueba

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