JSFiddle - React, Tailwind, and code Playground

by shanemendez

HTML

<div id='movable'>
   uhhh
</div>

<div id="movehere">
  
</div>

JavaScript

movable = document.querySelector('#movable')
here = document.querySelector("movehere")

here.appendChild(movable)

movable.textContent += here.children