JSFiddle - React, Tailwind, and code Playground
by Ashish
HTML
<label for="text_box" class="label">
Body:
</label>
<div class="text_box" name="text_box" id="text_box" contenteditable="true">
ghg
asasas
sasa
</div>
div2
<div class="text_box" name="text_box2" id="text_box2" contenteditable="true">
</div>
<input type="button" onclick="copy()" value="copy"/>
JavaScript
function copy()
{
document.getElementById("text_box2").innerHTML= document.getElementById("text_box").innerHTML;
}