1.0.0-rc • Published 2 years ago

jef-product-card v1.0.0-rc

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

JEF-Product-card

Este es una prueba de aprendizaje de despliegue de NPM

Jorge Fischer.

import { ProductCardHOC, ProductImg, ProductTitle, ProductButtons } from 'jef-product-card';
<ProductCardHOC   
    product={ product }
    initialValue={{
        count: 4,
        maxCount: 10,
    }}
>
    {({ reset, counter, handleOnCLickinscreaseDescrease, maxCount, maxCountReached}) => (
        <>
            <ProductImg />
            <ProductTitle />
            <ProductButtons />
        </>
    )}
</ProductCardHOC>