jm-shopping-cart
v1.0.0-rc
Published
Demo package NPM
Downloads
14
Maintainers
Readme
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>