JSFiddle - React, Tailwind, and code Playground

by msfrisbie

JavaScript

let observer = new MutationObserver(
    (mutationRecords) => console.log(mutationRecords));

observer.observe(document.body, {
  childList: true
});

document.body.appendChild(document.createElement('div'));