jnra-product-card
Version:
17 lines (14 loc) • 441 B
Markdown
# prueba
JEAN REYES
```
import { ProductCard, ProductButtons, ProductImage, ProductTitle } from '../.';
<ProductCard
product={productInCart}
values={ productInCart.count }
onChange={ (evento)=> onProductCountChange(evento) }
>
<ProductCard.Image className="custom-image"/>
<ProductCard.Title title={'hola mundo'} className="text-white"/>
<ProductCard.Buttons className="custom-buttons"/>
</ProductCard>
```