Last active
August 22, 2022 12:02
-
-
Save juhahinkula/68c0faef33600716a55ffc6b2d240385 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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/[email protected]/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