1.0.0-rc • Published 2 years ago

sf-product-card v1.0.0-rc

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

SF-Product-Card

This is a deployment test package

Example

import { ProductCard, ProductImage, ProductTitle, ProductButtons } from 'do-product-card'
<ProductCard
    product={product}
    initialValues={{
    quantity: 4,
    maxCount: 10,
    }}
>
    {({ reset, isMaxCountReached, quantity, increaseBy }) => (
        <>
            <ProductImage />
            <ProductTitle />
            <ProductButtons />
        </>
    )}
</ProductCard>