1.0.0-rc • Published 1 year ago

dsan-product-card v1.0.0-rc

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

DSAN-PROODUCT-CARD

Este es un paquete de prueba

derkysan

import { ProductCard, ProductButtons, ProductImage, ProductName } from "dsan-product-card";

<ProductCard
    product={product}
    className="bg-dark text-white"
    initialValues={{
      count: 4,
      maxCount: 10
    }}
    >
      {
        ( { reset, count, isMaxReached, maxCount, increaseBy } ) => (
          <>
            <ProductImage />
            <ProductName />
            <ProductButtons />
          </>
        )
      }
</ProductCard>