JSPM

lc_jaco_shopping

0.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2
  • Score
    100M100P100Q30023F
  • License MIT

Package Exports

  • lc_jaco_shopping
  • lc_jaco_shopping/dist/index.js
  • lc_jaco_shopping/dist/lc_jaco_shopping.esm.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (lc_jaco_shopping) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

LC-JACO-SHOPPING

Este es un paquete de pruebas de despliegue en NPM

Alexis Córdoba

Ejemplo

import { ProductButtons, ProductCard, ProductImage, ProductTitle  from 'lc-jaco-shopping'
const product = {
  id: '1',
  title: 'Coffe Mug - Card',
  // img: './coffee-mug.png',
}
<ProductCard
    product={product}
    initialValues={{
      count: 4,
      //maxCount: 10
    }}
>
  {
    ({ reset, increaseBy, isMaxCountReached, isMinCountReached }) => (
      <>
        <ProductImage />
        <ProductTitle />
        <ProductButtons />
      </>
    )
  }

</ProductCard>