0.0.1 • Published 2 years ago

dnr-product-card v0.0.1

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

DNR-Product-Card

This is a test deployment package to npm

Examples

import {
  ProductCard,
  ProductImage,
  ProductTitle,
  ProductButtons,
} from 'DNR-Product-Card'

<ProductCard
      product={product}
      initialValues={{
        count: 4,
        maxCount: 10,
      }}
    >
      {
        () => (
          <>
            <ProductImage />
            <ProductTitle />
            <ProductButtons />
          </>
        )
      }
</ProductCard>