JSFiddle - React, Tailwind, and code Playground

by Tahir Ahmed

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.1.3/TweenMax.min.js"></script>

JavaScript

const body = document.body;
const timeline = document.createElement('div');
const nav = document.createElement('ul');
const dateDivider = document.createElement('div');
const mainTimelineDate = document.createElement('div');

body.appendChild(timeline);
dateDivider.appendChild(mainTimelineDate);
nav.appendChild(dateDivider);
body.appendChild(nav);