JSFiddle - React, Tailwind, and code Playground

by cutsomeat

HTML

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<div class="container-fluid" id="wrap">
    <div class="well well-sm center-block" id="imgHolder"></div>
    
    <div class="row">
        <div class="col-sm-6">
            
        </div>
        <div class="col-sm-6"></div>
    </div>
</div>

CSS

#wrap {

    margin-top: 20px;
}
.well {
    width: 0;
}

JavaScript

(function($) {    
    
    var img = $("<img>").attr("src", "https://unsplash.it/400/300");
    $("#imgHolder").html(img);    
    
}(jQuery));