Created
August 26, 2016 04:07
-
-
Save wynnzen/40d173f9fd14a52af6aa3b509f018eee to your computer and use it in GitHub Desktop.
react textarea javascript line break
This file contains 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
{this.props.section.text.split(“\n”).map(function(item) { | |
return ( | |
<span> | |
{item} | |
<br/> | |
</span> | |
) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment