import {Money} from '@shopify/hydrogen'; import type {MoneyV2} from '@shopify/hydrogen/storefront-api-types'; export function ProductPrice({ price, compareAtPrice, }: { price?: MoneyV2; compareAtPrice?: MoneyV2 | null; }) { return (
{compareAtPrice ? (
{price ? : null}
) : price ? ( ) : (   )}
); }