1.0.0-rc • Published 2 years ago

siios-product-card v1.0.0-rc

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

siios-product-card

Este es un paquete de pruebas de despliegue en NPM.

SIIOS - Servicios Informáticos Integrales y Otras Soluciones.

EJEMPLO

import { ProductButtons, ProductCard, ProductImage, ProductTitle } from 'ca-product-card';
<ProductCard
    initialValues={{ count: 0, maxCount: 10 }}
    product={{id: '1', title: 'Coffee Mug - Card'}}
>
    {({ reset, increaseBy, isMaxCountReached, count, maxCount }) => (
        <>
            <ProductImage />
            <ProductTitle />
            <ProductButtons />
        </>
    )}
</ProductCard>