import React from 'react'; interface ITitleDisplayProps { text: string; className?: string; } export const TitleDisplay: React.FC = ({ text, className }) => { return (
{text.split('\n').map((line, i) => ( {line} {i < text.split('\n').length - 1 &&
}
))}
); };