1.0.0-rc • Published 1 year ago

aleph-product-card v1.0.0-rc

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

aleph-product-card

Este es un paquete para pruebas de despliegue NPM

import { ProductCard, ProductImage, ProductTitle, ProductButtons } from 'aleph-product-card'
<ProductCard
  product={{
  id: '0e81de6f-8795-4b2c-bf54-55f897ea1098',
  title: 'React',
  image: './react.png'
}}
  initialValues={{
    count: 4,
    maxCount: 20,
  }}
>
  {
    ({
      count,
      isMaxCountReached,
      onIncreaseBy,
      onReset,
      maxCount,
    }) => (
      <>
        <ProductImage />
        <ProductTitle />
        <ProductButtons />
      </>
    )
  }
</ProductCard>