Last active
October 28, 2023 10:58
-
-
Save pirey/c7f9bd96564a691a87535d3116e9d5fe to your computer and use it in GitHub Desktop.
react display multiline text content
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Comp({ content }) { | |
return content.split('\r\n').map((line, i) => | |
<p key={i}>{line.length ? line : <br />}</p>) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment