Skip to content

Instantly share code, notes, and snippets.

@LUN7
Created March 13, 2021 16:55
Show Gist options
  • Save LUN7/bf03a9da87c37b1346c80bad1f10f58d to your computer and use it in GitHub Desktop.
Save LUN7/bf03a9da87c37b1346c80bad1f10f58d to your computer and use it in GitHub Desktop.
A html starter with react
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<script
src="https://unpkg.com/react@17/umd/react.development.js"
crossorigin
></script>
<script
src="https://unpkg.com/react-dom@17/umd/react-dom.development.js"
crossorigin
></script>
<div id="app"></div>
<script></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment