Skip to content

Instantly share code, notes, and snippets.

@Comandeer
Created July 7, 2018 20:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Comandeer/251b9705b04c184e535a44d5760af7d3 to your computer and use it in GitHub Desktop.
Save Comandeer/251b9705b04c184e535a44d5760af7d3 to your computer and use it in GitHub Desktop.
loadComponent function with converting component into text
function loadComponent( URL ) {
return fetch( URL ).then( ( response ) => {
return response.text();
} );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment