JSFiddle - React, Tailwind, and code Playground

by btevfik

HTML

<div class="block">
    <div class="column">COLUMN</div>  
</div>

CSS

.column{
    border: solid 1px;
    width:100px;
    height:100px;
    display:inline-block;
}

JavaScript

$(".column").clone().appendTo(".block");