Skip to content

Instantly share code, notes, and snippets.

@camilomontoyau
Created November 11, 2018 14:54
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 camilomontoyau/03bb2685e19f5116c5a60c40347f0c60 to your computer and use it in GitHub Desktop.
Save camilomontoyau/03bb2685e19f5116c5a60c40347f0c60 to your computer and use it in GitHub Desktop.
react es js
<html>
<head>
<title>un título</title>
<meta charset="UTF-8" />
</head>
<body>
<script type="text/javascript">
const div = document.createElement("div");
div.innerText = "hola soy un div";
document.body.appendChild(div);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment