1.0.0-rc • Published 3 years ago
wol-product-card v1.0.0-rc
Wol-product-card
Es un paquete de pruebas de deploy en NPM
Example
import {
ProductCard,
ProductImage,
ProductTitle,
ProductButtons,
} "from wol-product-card";
<ProductCard
key={product.id}
product={product}
initialValues={{
count: 2,
maxCount: 12,
}}
>
{({ reset, isMaxCounterReached, maxCount, count, increaseBy }) => (
<>
<ProductImage />
<ProductTitle title={'Custom Mug'} />
<ProductButtons />
</>
)}
</ProductCard>