1.0.0-rc • Published 2 years ago

ev-product-card v1.0.0-rc

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

ed-product-card

Prueba de despliegue de componentes en NPM

Eduardo Varela

Ejemplo

import {ProductCard, ProductImage, ProductTitle, ProductButtons} from 'ev-product-card';
<ProductCard
  initialValues={{ count: 4, maxCount: 10 }}
  {...{ product }}
>
  {({ reset, counter, increaseBy, isMaxCountReached }) => (
    <>
      <ProductImage />
      <ProductTitle />
      <ProductButtons />
    </>
  )}
</ProductCard>