nc-product-card
v1.0.0-rc
Published
``` import ProductCard from 'nc-product-card'; ```
Downloads
2
Readme
Example
import ProductCard from 'nc-product-card';
<ProductCard
product={product}
initialValues={{ count: 1, maxCount: 10 }} >
{({ product, count, increaseBy, reset, maxCount }) => (
<>
<ProductCard.Image img={product.img} />
<ProductCard.Title title={product.name} />
<ProductCard.Buttons />
</>
)}
</ProductCard>