yha-product-card
v1.0.0-rc
Published
``` import { ProductCard, ProductImage, ProductTitle, ProductButtons } from '../components'; ```
Downloads
3
Maintainers
Readme
TSDX React User Guide
import { ProductCard, ProductImage, ProductTitle, ProductButtons } from '../components';
<ProductCard
key={ product.id }
product={ product }
className="bg-dark text-white"
initialValues={{
count: 6,
// maxCount: 10,
}}
>
{
({ reset, count, isMaxCountReached, maxCount, increaseBy }) => (
<>
<ProductImage />
<ProductTitle />
<ProductButtons />
</>
)
}
</ProductCard>