iesr-product-card
v1.0.0-rc
Published
#### Ivan Sanchez
Downloads
3
Readme
Este es un paquete de pruebas de deploy to NPM
Ivan Sanchez
import {ProductCard, ProductImage, ProductTitle, ProductButtons } from 'iesr-product-card'
<ProductCard product={product} initialValues = {{
count: 0,
maxCount: 10
}}>
{
({ reset, count, increaseBy, isMaxCountReached }) => (
<>
<ProductImage />
<ProductTitle />
<ProductButtons />
</>
)
}
</ProductCard>