JSFiddle - React, Tailwind, and code Playground

by Josh Pullen

JavaScript

const blob = new Blob(["console.log('hi from module');"], { type: "text/javascript" });
const url = URL.createObjectURL(blob);
console.log(url);

import(url).then((module) => {

});