JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.18.0/TweenMax.min.js"></script>
<h1>Hello World!</h1>

JavaScript

TweenMax.fromTo('h1', 2, {
    position: 'absolute',
    top: '50%',
    s: '50%',
    yPercent: -50,
    xPercent: -50,
    transformOrigin: '50% 50%',
    force3D: false
}, {
    delay: 1,
    rotation: 45,
    scale: 2,
    ease: Elastic.easeOut
});