drj-product-card
v0.0.1
Published
``` <ProductCard key={product.id} product={product} initialValue={{ count: 4, maxCount: 10 }} > { ({ reset, increaseBy, counter, isMaxCountReached }) => ( <> <ProductImage /> <
Downloads
2
Readme
Ejemplos
<ProductCard
key={product.id}
product={product}
initialValue={{
count: 4,
maxCount: 10
}}
>
{
({ reset, increaseBy, counter, isMaxCountReached }) => (
<>
<ProductImage />
<ProductTitle />
<ProductButtons />
</>
)
}
</ProductCard>