import { ProductCard, ProductImage, ProductButtons, ProductTitle } from '../.';
<ProductCard
product={ product }
initialValues={{
count: 4,
maxCount: 8,
}}
>
{
( { reset, count, increaseBy, isMaxCountReached } ) => (
<>
<ProductImage />
<ProductTitle />
<ProductButtons />
</>
)
}
</ProductCard>