6 lines
242 B
TypeScript
6 lines
242 B
TypeScript
import React from "react";
|
|
|
|
|
|
export const MultiParagraphText: React.FC<{ text: string }> = ({ text }) =>
|
|
text.split("\n").map((line, index) => (
|
|
<p key={index} className="p mt-[1em] max-w-[38em] mx-auto text-justify">{line}</p>)); |