Skip to content

Instantly share code, notes, and snippets.

@juhahinkula
Last active August 22, 2022 12:02
Show Gist options
  • Save juhahinkula/68c0faef33600716a55ffc6b2d240385 to your computer and use it in GitHub Desktop.
Save juhahinkula/68c0faef33600716a55ffc6b2d240385 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Front End Development / React</title>
</head>
<body>
<!-- We will put our React component inside this div. -->
<div id="root"></div>
<!-- Load React & Babel -->
<!-- Note: when deploying, replace "development.js" with "production.min.js". -->
<script src="https://unpkg.com/react@18/umd/react.development.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@18/umd/react-dom.development.js" crossorigin></script>
<script src="https://unpkg.com/babel-standalone@6.26.0/babel.min.js"></script>
<!-- Load our React component. -->
<script type="text/babel">
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment