Skip to content

Instantly share code, notes, and snippets.

@petyosi
Created February 9, 2018 14:48
Show Gist options
  • Save petyosi/0079f51128dcd1fbe77376e235673453 to your computer and use it in GitHub Desktop.
Save petyosi/0079f51128dcd1fbe77376e235673453 to your computer and use it in GitHub Desktop.
const addImageToPage = (imageSrc) => {
const image = document.createElement('img');
image.src = imageSrc;
image.style.height = '100px';
image.style.width = '100px';
document.body.appendChild(image);
};
export default addImageToPage;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment