JSFiddle - React, Tailwind, and code Playground

HTML

<html>
<head>
<style type="text/css">
div.box { background: #EEE; height: 100px; width: 500px; }
div.left { background: #666; height: 100%;}
div.right { background: #999; float: right; height: 100%; width: 450px;  }
div.clear { clear: both; height: 1px; overflow: hidden; font-size:0pt; margin-top: -1px; }
</style>
</head>
<body>
<div class="box">
  
   <div class="right">View</div>
   <div class="left">Tree</div>   
   <div class="clear"></div>
</div>
</body>
</html>