1.0.0-rc • Published 2 years ago

ef-product-cart v1.0.0-rc

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

EF-Product-Card

Paquet de proves per a desplegar a NPM

Eduard Farinyes

Exemple

import {ProductCard, ProductImage, ProductTitle, ProductButtons } from 'ef-product-cart'
<ProductCard
    
    product={product}
        
    initialValues={{
        count: 3,
        maxCount: 10
    }}
>
    {
        ( {reset, count, incressBy, maxCount, isMaxCountReached } ) => (
            <>
              <ProductImage />
              <ProductTitle />
              <ProductButtons />
            </>
        )
    }
</ProductCard>