###Implementation
##Exmple:
``
const ShoppingPage = () => {
const MyProdcut = listOfProducts[0];
return (
shoping store
product={MyProdcut}
key={MyProdcut.id}
initialValues={{ state: 5, maxCount: 10 }}
>
{/
esta arrowFunction es el children que tengo en el ProductCard, o sea cualquier argumento que envío alla, lo recibo aca. /}
{({
handleReset,
count,
handleIncrease,
isMaxCountReached,
maxCount,
product,
}) => (
<>
>
)}
);
};
export default ShoppingPage;
``