1.0.0-rc • Published 2 years ago

chipacito-card v1.0.0-rc

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Product card

This is package for testing NPM deploy

import {ProductCard, ProductImage, ProductTitle, ProductButtons} from 'chipacito-card'

<ProductCard
  product={product}
  initialValues={{
    count: 6,
    maxCount: 8,
  }}
>
  {({ reset, count, isMaxCountReached, maxCount, increaseBy }) => (
    <>
      <ProductImage />
      <ProductTitle />
      <ProductButtons />
    </>
  )}
</ProductCard>