1.0.0-rc • Published 1 year ago

cfcg-product-card v1.0.0-rc

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

cfcg-product-card

This is a test package deploy on npm

Carlos Calvo

Example

import {ProductCard, ProductImage, ProductTitle, ProductButtons} from 'cfcg-product-card';
<ProductCard 
  product={ product  }
  initialValues={{
    count: 2,
    maxCount: 10
  }}
  >
    {
      ({ count,
        isMaxCountReached,
        maxCount,
        product,
        increaseBy,
        reset, }) => (
        <>
          <ProductImage />
          <ProductTitle />
          <ProductButtons />                 
        </>
      )
    }
</ProductCard>