JSPM

at-product-card

0.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q7493F
  • License MIT

Package Exports

  • at-product-card
  • at-product-card/dist/at-product-card.esm.js
  • at-product-card/dist/index.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 (at-product-card) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

AT-Product-Card

Paquete de pruebas que sera subido a NPM

Andres Tejada

Ejemplo

´´´ import {} from 'at-product-card' ´´´

<div>
<h1>Shopping Page</h1>
<hr/>
    <ProductCard
        product={product}
        initialValues={{
            count:4,
            maxCount:10
        }} 
    >
        {
            ({reset,increaseBy,count,isMaxCountReached})=>(
                <>
                    <ProductImg />
                    <ProductTitle />
                    <ProductButtons  />
                </>
            )
        }
    </ProductCard>
</div>