wfproductcard
v0.0.1
Published
```js <ProductCard product={product} initialValues={{ count: 4, // maxCount: 10, }} > {({ count, reset, increasyBy, isMaxCountReached, maxCount }) => { return ( <> <ProductCard.Image /> <ProductCard.Title /> <ProductCard.Buttons /> </> ); }} </ProductCard
Downloads
2
Readme
wf product card
<ProductCard
product={product}
initialValues={{
count: 4,
// maxCount: 10,
}}
>
{({ count, reset, increasyBy, isMaxCountReached, maxCount }) => {
return (
<>
<ProductCard.Image />
<ProductCard.Title />
<ProductCard.Buttons />
</>
);
}}
</ProductCard>