Skip to content

Instantly share code, notes, and snippets.

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