1.0.0-rc • Published 3 years ago

zaf-product-card v1.0.0-rc

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

ZAF-PRODUCT_CARD

F Z

Ejemplo

import { ProductCard, ProductImage, ProductTitle, ProductButtons } from "zaf-product-card";
      <ProductCard
        product={product}
        initialValues={{
          count: 6,
        }}
      >
        {
          ({
            count,
            isMaxCountReached,
            reset, 
            increaseBy

          }) => (
            <>
              <ProductImage />
              <ProductTitle />
              <ProductButtons />
            </>
          )
        }
      </ProductCard>