0.1.0 • Published 1 year ago

productcard-oas v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Omar Product card

Paquete de pruebas de despliegue a npm

Ejemplo

  <ProductCard
					key={product.id}
					product={product}
					initialValues={{
						count: 4,
						maxCount: 6,
					}}
				>
					{
						({reset, increaseBy, count, isMaxCountReached}) => (
							<>
								<ProductImage />
								<ProductTitle />
								<ProductButtons />
							</>
						)
					}	 
			</ProductCard>