Package Exports
- mp-product-card
- mp-product-card/dist/index.js
- mp-product-card/dist/mp-product-card.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 (mp-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
MP-Product-Card
Este es un paquete de pruebas de despliegue en NPM
MP
import {
ProductCard,
ProductImage,
ProductTitle,
ProductButtons
} from 'mp-product-card';
<ProductCard
product={product}
initialValues={{
count: 4,
maxCount: 10
}}
>
{
({ reset, count, increaseBy, isMaxCountReached, maxCount }) => (
<>
<ProductImage />
<ProductTitle />
<ProductButtons />
</>
)
}
</ProductCard>