npm.io
0.0.2 • Published 4 years ago

brn-product-card

Licence
MIT
Version
0.0.2
Deps
0
Size
145 kB
Vulns
0
Weekly
0

Test package to deploy to NPM

Example

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