JSFiddle - React, Tailwind, and code Playground

by cleo_not_chloe

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 &amp; 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;
}