1.0.0-rc • Published 3 years ago

cmcm-product-card v1.0.0-rc

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

CMCM-Product-Card

This is a test package to deploy

Carlos Correa

Example

import {ProductCard, ProductImage, ProductTitle, ProductButtons} from 'cmcm-product-card'
<ProductCard
		product={product}
		initialValues={{
		  count: 0,
		  maxCount: 14,
		}}
>
	{({
		count,
		isMaxCountReached,
		maxCount,
    increaseBy,
		reset,
	}) => (
		<>
			<ProductImage />
			<ProductTitle />
			<ProductButtons
				style={{
					display: "flex",
					justifyContent: "end",
				}}
			/>
		</>
	)}
</ProductCard>