react-jlm-product-card
Version:
This is a test package to deploy in NPM
30 lines (24 loc) • 551 B
Markdown
# DO-Product-Card
This is a test package to deploy in NPM
### Josue Lara
## Example
```
import { ProductCard, ProductButtons, ProductImage, ProductTitle } from "do-product-card";
```
```
<ProductCard
product={product}
initialValues={{
count: 6,
maxCount: 10,
}}
>
{({ reset, increaseBy, isMaxCountReached, count, maxCount }) => (
<>
<ProductImage />
<ProductTitle />
<ProductButtons />
</>
)}
</ProductCard>
```