Skip to content

Instantly share code, notes, and snippets.

@vitorfreitas
Created January 18, 2019 14:27
Show Gist options
  • Save vitorfreitas/d9965bd6cdd292a5d3b0d79253c44012 to your computer and use it in GitHub Desktop.
Save vitorfreitas/d9965bd6cdd292a5d3b0d79253c44012 to your computer and use it in GitHub Desktop.
react loading script
componentDidMount () {
const script = document.createElement("script");
script.src = "https://meusite.com/script.js";
script.async = true;
document.body.appendChild(script);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment