Use the remarkBreaks plugin from remark-breaks:
npm install remark-breaks
import ReactMarkdown from "react-markdown";
import remarkBreaks from "remark-breaks";
<div className="prose prose-gray mt-4">
<ReactMarkdown remarkPlugins={[remarkBreaks]}>
{product.content}
</ReactMarkdown>
</div>