0.0.1-rc • Published 2 years ago

at-product-card v0.0.1-rc

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

AT-Product-Card

Paquete de pruebas que sera subido a NPM

Andres Tejada

Ejemplo

´´´ import {} from 'at-product-card' ´´´

<div>
<h1>Shopping Page</h1>
<hr/>
    <ProductCard
        product={product}
        initialValues={{
            count:4,
            maxCount:10
        }} 
    >
        {
            ({reset,increaseBy,count,isMaxCountReached})=>(
                <>
                    <ProductImg />
                    <ProductTitle />
                    <ProductButtons  />
                </>
            )
        }
    </ProductCard>
</div>