import React from "react"; export const MultiParagraphText: React.FC<{ text: string }> = ({ text }) => text.split("\n").map((line, index) => (

{line}

));