import { AddToCart } from 'components/cart/add-to-cart'; import Price from 'components/price'; import Prose from 'components/prose'; import { Product, Store } from 'lib/shopify/types'; import { Suspense } from 'react'; import { VariantSelector } from './variant-selector'; export function ProductDescription({ product, store }: { product: Product; store: Store }) { return ( <>

{product.title}

{product.descriptionHtml ? ( ) : null} ); }