1.0.0-rc • Published 1 year ago
jm-shopping-cart v1.0.0-rc
Shopping Cart
Demo package NPM
Ejemplo
import { ProductCard, ProductImage, ProductTitle, ProductButtons } from 'jm-shopping-cart';
<ProductCard
product={ product }
initialValues={{
count: 6,
// maxCount: 10,
}}
>
{
({ reset, count, isMaxCountReached, maxCount, increaseBy }) => (
<>
<ProductImage />
<ProductTitle />
<ProductButtons />
</>
)
}
</ProductCard>