cec-product-card
v1.0.0-rc
Published
Esto es un paquete de pruebas en NPM
Maintainers
Readme
CEC-Product-Card
Esto es un paquete de pruebas en NPM
Carlos Castro
import {
ProductCard,
ProductImage,
ProductTitle,
ProductButtons
} from 'cec-product-card' <ProductCard
product={product}
initialValues={{
count: 4,
maxCount: 10
}}
>
{
({ reset, isMaxCountReached, increaseBy }) => (
<>
<ProductImage />
<ProductTitle />
<ProductButtons />
<button onClick={reset}>Reset</button>
{
(!isMaxCountReached && <button onClick={()=> increaseBy(2)}>+2</button> )
}
</>
)
}
</ProductCard>