JSFiddle - React, Tailwind, and code Playground
HTML
<div id="text" contenteditable="true">
<li>This is the first paragraph.</li>
<li>This is the second.</li>
<li>This is the third.</li>
</div>
<div id="savebox">
<textarea id="textarea">Copy & paste here with breaks in between each list item.</textarea>
</div>
CSS
li {
list-style-type: none;
}
#savebox {
float: right;
}
#textarea {
height: 200px;
width: 200px;
}