Skip to content

Instantly share code, notes, and snippets.

@cindywu
Created January 6, 2023 18:26
Show Gist options
  • Save cindywu/a8fa623b2e8a7728420e6b8524bacb31 to your computer and use it in GitHub Desktop.
Save cindywu/a8fa623b2e8a7728420e6b8524bacb31 to your computer and use it in GitHub Desktop.
nextjs-foundations.html
<!-- index.html -->
<html>
<body>
<div>
<div id="app"></div>
<script type="text/javascript">
const app = document.getElementById('app')
const header = document.createElement('h1')
const headerContent = document.createTextNode(
'Develop. Preview. Ship. 🚀'
)
header.appendChild(headerContent)
app.appendChild(header)
</script>
</div>
</body>
</html>
@cindywu
Copy link
Author

cindywu commented Jan 6, 2023

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment