<ShopSectionNew> Component

Share
Code Editor
<ShopSectionNew>
{({
activeVariant,
children,
}) => {
return (
<ShopSection>
<ShopHeader>
<ShopHeader.Title>Restore 2</ShopHeader.Title>
{true && <ShopHeader.Badge>Best Seller</ShopHeader.Badge>}
{true && <ShopHeader.Reviews reviews={activeVariant.shoppableProduct.reviews} />}
</ShopHeader>
{ children }
</ShopSection>
);
}}
</ShopSectionNew>