dps-product-card
v0.0.2
Published
## Ejemplo
Downloads
4
Readme
David Pino
Ejemplo
import ProductCard from "../components";
import { products } from "../data/products";
const product = products[0];
export const ShoppingPage = () => {
return (
<div>
<div>
<ProductCard
product={product}
initialValues={{
count: 5,
maxCount: 10,
}}
>
{() => (
<>
<ProductCard.Image />
<ProductCard.Title />
<ProductCard.Buttons />
</>
)}
</ProductCard>
</div>
</div>
);
};