Skip to content

Instantly share code, notes, and snippets.

@peterayeniofficial
Created September 30, 2020 15:57
Show Gist options
  • Save peterayeniofficial/40a9274fc957ee80457e43ecd90f3ad8 to your computer and use it in GitHub Desktop.
Save peterayeniofficial/40a9274fc957ee80457e43ecd90f3ad8 to your computer and use it in GitHub Desktop.
Basic Hello World
<html>
<body>
<div id="root"></div>
</body>
<script type="module">
// Select the Div with an ID of 'root'
const rootDiv = document.getElementById("root")
// add 'Hello World' text to it
rootDiv.textContent = "Hello World"
</script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment