1.0.2-rc • Published 2 years ago

mff-product-card v1.0.2-rc

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

MFF-Product Card

Paquete de pruebas de un paquete npm del curso de react-avanzado

Manu Fernández Freire

Ejemplo

import {
  ProductCard,
  ProductImage,
  ProductTitle,
  ProductButtons,
} from 'mff-product-cart' ;
<ProductCard
    key={product.id}
    product={product}
    initialValues={{
        count: 4,
        maxCount: 15
    }}
>
    {
        ({ count, maxCount, isMaxCountReached, reset, increaseBy }) => (
            <>
                <ProductImage />
                <ProductTitle  />
                <ProductButtons  />
            </>
        )
    }
</ ProductCard >