mirror of
https://github.com/tjsga/tj-sga-website-react.git
synced 2025-04-03 20:00:17 -04:00
Add LineBreakToBrTag component
This commit is contained in:
parent
e82a33b0b9
commit
5ccfc42e06
13
src/components/LineBreakToBrTag.tsx
Normal file
13
src/components/LineBreakToBrTag.tsx
Normal 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 />
|
||||
</>
|
||||
))}
|
||||
</>
|
||||
);
|
||||
}
|
Loading…
Reference in New Issue
Block a user