JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://www.snorkl.tv/dev/libs/greensock/TweenMax.min.js"></script>
<div id="bgHolder" style="background-color: #adff2f; width: 200px; height: 200px; position:absolute;">
    <div id="fgHolder" style="background-color:aqua; width: 50px; height: 50px">

    </div>
</div>

JavaScript

var bg = document.getElementById("bgHolder");
    TweenLite.to(bg, 2, {css:{x:500, y:700}});