Skip to content

Instantly share code, notes, and snippets.

@alancasagrande
Last active November 14, 2020 16:27
Show Gist options
  • Save alancasagrande/8232218608c206a7bc4d0ca5b504c92f to your computer and use it in GitHub Desktop.
Save alancasagrande/8232218608c206a7bc4d0ca5b504c92f to your computer and use it in GitHub Desktop.
function HelloComponent() {
const element = document.createElement("div");
element.innerText = "Hello from bundle size demo";
return element;
}
document.body.appendChild(HelloComponent());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment