# ATO-Product-Card

This is a test package for deployment on NPM

### Akito Watanabe

## Examples
```
import { ProductCard, ProductImage, ProductTitle, ProductButtons } from 'ato-product-card'
```

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