JSFiddle - React, Tailwind, and code Playground

HTML

<div id="left">
  
</div>
<div id="right">
  
</div>

CSS

body { margin: 0; padding: 0;}
#left {
   background: url(https://static.pexels.com/photos/24353/pexels-photo.jpg);
   width: 50%;
   position: absolute;
   left: 0px;
   height: 100%;
}

#right {
   background: url(http://media.caranddriver.com/images/media/51/25-cars-worth-waiting-for-lp-ferrari-488gtb-photo-658256-s-original.jpg);
   width: 50%;
   position: absolute;
   right: 0px;
   height: 100%;
}