1.0.1-rc • Published 1 year ago

afrcode-product-card v1.0.1-rc

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

afrcode-product-card

Este es un paquete de pruebas de despliegue en 'npm'

Andres Rodriguez

Ejemplo

import { ProductButtons, ProductCard, ProductImage, ProductTitle } from 'afrcode-product-card'
<ProductCard
  product={product}
  initialValues={{
    count: 5,
    maxCount: 0
  }}
>
  {
    (args) => (
      <>
        <ProductImage />
        <ProductTitle />
        <ProductButtons />
      </>
    )
  }
</ProductCard>