Skip to content

Instantly share code, notes, and snippets.

@boostup
Created July 30, 2020 15:31
Show Gist options
  • Save boostup/6905e6274ab91d7fc38716894ad82858 to your computer and use it in GitHub Desktop.
Save boostup/6905e6274ab91d7fc38716894ad82858 to your computer and use it in GitHub Desktop.
const formatForHtml = (textString) => {
return textString.split("\n").map(function (line, idx) {
return (
<div key={idx}>
{`${line}`}
<br />
</div>
);
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment