0.0.2-rc • Published 2 years ago

ed-product-card v0.0.2-rc

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

ED-Product-Card

Este es un paquete de pruebas de despliegue en NPM

Simple tarjeta de un producto para poder usarse en un Marketplace.

Ejemplo:

import { ProductCard, ProductImage, ProductTitle, ProductButtons } from 'ed-product-card';

const App = () => {
  return (
    <>
      <ProductCard
        product={ product }
        initialValues={{
            count: 6,
            maxCount: 10,
        }}
      >
        {
          ({ reset, count, isMaxCountReached, maxCount, increaseBy  }) => (
              <>
                  <ProductImage />
                  <ProductTitle />
                  <ProductButtons />
              </>
          )
        }
      </ProductCard>
    </>
  );
};