jelo-product-card
v0.0.5
Published
This is a test NPM Package test.
Downloads
5
Maintainers
Readme
JELO-Product-Card
This is a test NPM Package test.
José Enrique López Obeso
Example
import { ProductCard, ProductImage, ProductTitle, ProductButtons } from 'do-product-card';
<ProductCard
product={ product }
initialValues={{
count: 6,
// maxCount: 10,
}}
>
{
({ reset, count, isMaxCountReached, maxCount, increaseBy }) => (
<>
<ProductImage />
<ProductTitle />
<ProductButtons />
</>
)
}
</ProductCard>