Skip to content

Instantly share code, notes, and snippets.

@pirey
Last active October 28, 2023 10:58
Show Gist options
  • Save pirey/c7f9bd96564a691a87535d3116e9d5fe to your computer and use it in GitHub Desktop.
Save pirey/c7f9bd96564a691a87535d3116e9d5fe to your computer and use it in GitHub Desktop.
react display multiline text content
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