0.0.1 • Published 12 months ago

darr-product-card v0.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
12 months ago

darr-product-card

This is a package of deploy test in npm

Diego Ramos

Ejemplo

import { ProductCard, ProductImage, ProductTitle, ProductButtons }  from 'darr-product-card'
      <ProductCard
        key={product.id}
        product={product}
        className="bg-dark text-white"
        initialValues={{
          count: 4,
          // maxCount: 10,
        }}
      >
        {({ reset, count, maxCount, isMaxCountReached, increaseBy }) => (
          <>
            <ProductImage />
            <ProductTitle />
            <ProductButtons />
          </>
        )}
      </ProductCard>