0.1.0 • Published 2 years ago

ma-product-card v0.1.0

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

ma-product-card

Este es un paquete de pruebas de despliegue en npm

Martin Elias

Ejemplo

import {ProductCard, ProductImage, ProductTitle, ProductButtons} from "ma-product-card";
<ProductCard
    product={product}
    initialValues={{
        count: 4,
        // maxCount: 10
    }}
>
    {({ reset, increaseBy, count, isMaxReached }) => (
        <>
            <ProductImage />
            <ProductTitle />
            <ProductButtons />
        </>
    )}

</ProductCard>