1.0.1-rc • Published 2 years ago

ms-product-card v1.0.1-rc

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

JS-Product-Card

Este es un paquete de pruebas de despliegue en NPM

Jesús Sierra

Ejemplo

import { ProductButtons, ProductCard, ProductImage, ProductTitle } from 'ms-product-card';
const product = {
  id: '1',
  title: 'Coffee Mug - Card',
  // img: './coffee-mug.png',
}
<ProductCard
  product={product}
  initialValues={{
    count: 4,
    maxCount: 10,
  }}
>
  {({ reset, increaseBy, isMaxCountReached, count }) => (
    <>
      <ProductImage />
      <ProductTitle />
      <ProductButtons />
    </>
  )}
</ProductCard>