jvm-product-card
v0.1.0
Published
``` import {ProductCard, ProductImage, ProductTitle, ProductButtons} from 'jvm-product-card' ```
Downloads
72
Readme
Ejemplo
import {ProductCard, ProductImage, ProductTitle, ProductButtons} from 'jvm-product-card'
<ProductCard
key={product.id}
product={product}
initialValues={{
count: 4,
maxCount: 10
}}
>
{
({ count,reset,isMaxCountReached, maxCount, increaseBy }) =>(
<>
<ProductImage />
<ProductTitle />
<ProductButtons />
</>
)
}
</ProductCard>