1.0.0-rc • Published 9 months ago

cq-product-card v1.0.0-rc

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

CQ-Product-Card

Este es un paquete de pruebas de despliegue en NPM

Cristian Quintanilla

Ejemplos

import { ProductCard, ProductImage, ProductTitle, ProductButtons } from 'cq-product-card';

<ProductCard
  product={ product }
  initialValues={{
    count: 1,
    // maxCount: 15,
  }}
>
  {
    () => (
      <>
        <ProductImage />
        <ProductTitle />
        <ProductButtons />
      </>
    )
  }
</ProductCard>
import { ProductCard } from 'cq-product-card';

<ProductCard
  product={ product }
  initialValues={{
    count: 1,
    // maxCount: 15,
  }}
>
  {
    () => (
      <>
        <ProductCard.Image />
        <ProductCard.Title />
        <ProductCard.Buttons />
      </>
    )
  }
</ProductCard>