1.0.0-rc • Published 3 years ago

mp-product-card-react-typescript v1.0.0-rc

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

mp-Product Card

This is a deploy test package to NPM

by Matias Parodi

Example

import {ProductCard, ProductImage, ProductTitle, ProductButtons} from 'mp-product-card'
      <ProductCard
        product={product}
        initialValues={{ count: 2, maxCount: 5 }}
      >
        {({ count, reset, isMaxCountReached, increaseBy }) => (
          <>
            <ProductImage />
            <ProductTitle />
            <ProductButtons />
          </>
        )}
      </ProductCard>