JSFiddle - React, Tailwind, and code Playground

JavaScript

var song = new Audio("http://tonycuffe.com/mp3/tail%20toddle.mp3");
song.controls = true;
song.loop = true;
song.autoplay = true;
document.body.appendChild(song);