Add LineBreakToBrTag component

This commit is contained in:
Michael Fatemi 2021-01-11 19:25:30 -05:00
parent e82a33b0b9
commit 5ccfc42e06

View File

@ -0,0 +1,13 @@
export default function LinebreakToBrTag({ text }: { text: string }) {
// Must be wrapped in fragment to process react nodes correctly
return (
<>
{text.split('\n').map((line) => (
<>
{line}
<br />
</>
))}
</>
);
}