1.0.0-rc • Published 7 months ago

fbc-product-card v1.0.0-rc

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

fbc-product-card

Este es un paquete de pruebas de despliegue en NPM

Felipe Berrio Carvajal

Ejemplo

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