soft2now / yani-product-cart

This is example project by tutorials - Can use for production if you want. In my case, i use it for production

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

yani-product-cart

Este es un paquete de pruebas de despliegue en NPM

Ángel De La Cruz

Ejemplo:

import { ProductCard, ProductImage, ProductTitle, ProductButtons } from 'yani-product-cart'
<ProductCard
    key={product.id}
    product={product}
    initialValues={{
        count: 6,
        maxCount: 10,
    }}
    >
    {({ reset, isMaxCountReached, maxCount, increaseBy, count }) => (
        <>
        <ProductImage />
        <ProductTitle />
        <ProductButtons />
        </>
    )}
</ProductCard>

About

This is example project by tutorials - Can use for production if you want. In my case, i use it for production

License:MIT License


Languages

Language:TypeScript 82.0%Language:CSS 12.8%Language:HTML 2.7%Language:JavaScript 2.5%