0.0.1 • Published 4 years ago
@codernicola/product-card v0.0.1
Product Card
Test deployment of a product card.
Ejemplo
import ProductCard from '@codernicola/product-card';import {ProductCard, ProductImage, ProductTitle, ProductButtons} from '@codernicola/product-card';<ProductCard
product={product}
initialValues={{
count: 4,
maxCount: 10,
}}
>
{({ reset, count, increaseBy, isMaxCountReached }) => (
<>
<ProductCard.Image />
<ProductCard.Title />
<ProductCard.Buttons />
</>
)}
</ProductCard><ProductCard
product={product}
initialValues={{
count: 4,
maxCount: 10,
}}
>
{({ reset, count, increaseBy, isMaxCountReached }) => (
<>
<ProductImage />
<ProductTitle />
<ProductButtons />
</>
)}
</ProductCard>0.0.1
4 years ago