Skip to content

Instantly share code, notes, and snippets.

@Lancewer
Created November 30, 2017 21:07
Show Gist options
  • Save Lancewer/b20d1e3801ce0cb7b8507b3948df2a42 to your computer and use it in GitHub Desktop.
Save Lancewer/b20d1e3801ce0cb7b8507b3948df2a42 to your computer and use it in GitHub Desktop.
[React Template] new React Template from official site #React #Javascript #JS #template #init #HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Hello World</title>
<script src="https://unpkg.com/react@16/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
<script src="https://unpkg.com/babel-standalone@6.15.0/babel.min.js"></script>
</head>
<body>
<div id="root"></div>
<script type="text/babel">
ReactDOM.render(
<h1>Hello, world!</h1>,
document.getElementById('root')
);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment