JSFiddle - React, Tailwind, and code Playground

by digitalzebra

HTML

<div id="parent">

    <div class="left">Tree</div>
            <div class="right">View</div>

</div>

CSS

#parent {

    border: 1px solid red;
    width:100%;
}
.left {
    float:right;
    background: #ccc;
}
.right {
    overflow:auto;

    background: #888;
}