JSFiddle - React, Tailwind, and code Playground

by taffrail

HTML

<div id="taffrail">

</div>

JavaScript

fetch("http://localhost:5556/www/api/oembed?applenews=1&url=http%3A%2F%2Flocalhost%3A5555%2Fwww%2Fembed%2FTF6t20LKsr55VN2D2I_E7YI%2Fi-iras-traditional-vs.-roth-vs.-sep%3F").then(api => {
return api.json();
}).then(oembed => {
	document.getElementById("taffrail").innerHTML = oembed.html;
})