1.0.0 • Published 1 year ago

jon-productcard-component v1.0.0

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

Jon-ProductCard-Component

This is a product card component.

Jonathan Bracho

Example

import {ProductCard, ProductImage, ProductTitle, ProductButtons} from 'jon-productcard-component'
 <ProductCard
    product={product}
    initialValues={{
      count: 4,
      maxCount: 10,
    }}
  >
    {({ reset, increaseBy, isMaxCountReached, count }) => (
        <>
          <ProductImage />
          <ProductTitle />
          <ProductButtons />
        </>
      )}
  </ProductCard>