vedo-product-card
v1.0.0-rc
Published
Paquete de prueba - Despliegue NPM
Downloads
2
Maintainers
Readme
vedo-product-card
Paquete de prueba - Despliegue NPM
Ejemplo
import {ProductCard, ProductImage, ProductTitle, ProductButtons} from 'vedo-product-card';
<ProductCard
product={product}
initialValues={{
quantity: 5,
maxQuantity: 10,
}}
>
{
({ counter, increaseBy, reset, isMaxQuantityReached, maxQuantity }) => (
<>
<ProductImage />
<ProductTitle />
<ProductButtons />
</>
)
}
</ProductCard>