JSFiddle - React, Tailwind, and code Playground

by jrunning

HTML

<pre></pre>

JavaScript

tap(async stats => {
  await Promise.resolve();
  document.querySelector('pre').textContent = JSON.stringify(stats);
});


function tap(callback) {
  callback({ foo: 123 });
}