JSFiddle - React, Tailwind, and code Playground
by ponyspy
HTML
<textarea></textarea>
<br>
<button>get</button>
<div class="result"></div>
CSS
.result {
border: 1px solid red;
min-height: 60px;
}
JavaScript
$('button').click(function() {
var val = $('textarea').val();
var res = '<p>' + val.replace(/\n/g, '</p><p>') + '</p>'
$('.result').empty().append(res);
})