darr-product-card
v0.0.1
Published
This is a package of deploy test in npm
Downloads
3
Maintainers
Readme
darr-product-card
This is a package of deploy test in npm
Diego Ramos
Ejemplo
import { ProductCard, ProductImage, ProductTitle, ProductButtons } from 'darr-product-card'
<ProductCard
key={product.id}
product={product}
className="bg-dark text-white"
initialValues={{
count: 4,
// maxCount: 10,
}}
>
{({ reset, count, maxCount, isMaxCountReached, increaseBy }) => (
<>
<ProductImage />
<ProductTitle />
<ProductButtons />
</>
)}
</ProductCard>