1.0.1-rc • Published 2 years ago

am-product-card v1.0.1-rc

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

AM Product Card

Test package for npm deployments

Example:

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